Skip to content

Commit 1f3a7f1

Browse files
Fix CS/WS issues
1 parent 5fc18bc commit 1f3a7f1

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

tests/LCS/LongestCommonSubsequenceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ protected function setUp()
4040
/**
4141
* @return LongestCommonSubsequence
4242
*/
43-
protected abstract function createImplementation();
43+
abstract protected function createImplementation();
4444

4545
protected function tearDown()
4646
{

tests/LCS/MemoryEfficientImplementationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace SebastianBergmann\Diff\LCS;
1212

13-
use PHPUnit\Framework\TestCase;
14-
1513
/**
1614
* @covers SebastianBergmann\Diff\LCS\MemoryEfficientImplementation
1715
*/

tests/LCS/TimeEfficientImplementationTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@
1010

1111
namespace SebastianBergmann\Diff\LCS;
1212

13-
use PHPUnit\Framework\TestCase;
14-
1513
/**
1614
* @covers SebastianBergmann\Diff\LCS\TimeEfficientImplementation
1715
*/

0 commit comments

Comments
 (0)