diff --git a/tests/Output/UnifiedDiffOutputBuilderTest.php b/tests/Output/UnifiedDiffOutputBuilderTest.php index 1a8ea03e..28614111 100644 --- a/tests/Output/UnifiedDiffOutputBuilderTest.php +++ b/tests/Output/UnifiedDiffOutputBuilderTest.php @@ -7,7 +7,6 @@ * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ - namespace SebastianBergmann\Diff\Output; use PHPUnit\Framework\TestCase; @@ -16,9 +15,9 @@ /** * @covers SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder * - * @uses SebastianBergmann\Diff\Differ - * @uses SebastianBergmann\Diff\Output\AbstractChunkOutputBuilder - * @uses SebastianBergmann\Diff\TimeEfficientLongestCommonSubsequenceCalculator + * @uses SebastianBergmann\Diff\Differ + * @uses SebastianBergmann\Diff\Output\AbstractChunkOutputBuilder + * @uses SebastianBergmann\Diff\TimeEfficientLongestCommonSubsequenceCalculator */ final class UnifiedDiffOutputBuilderTest extends TestCase { @@ -84,9 +83,6 @@ public function provideDiffWithLineNumbers(): array } /** - * @param string $from - * @param string $to - * * @dataProvider provideStringsThatAreTheSame */ public function testEmptyDiffProducesEmptyOutput(string $from, string $to): void @@ -103,7 +99,7 @@ public function provideStringsThatAreTheSame(): array ['a', 'a'], ['these strings are the same', 'these strings are the same'], ["\n", "\n"], - ["multi-line strings\nare the same", "multi-line strings\nare the same"] + ["multi-line strings\nare the same", "multi-line strings\nare the same"], ]; } }