File tree Expand file tree Collapse file tree 1 file changed +4
-8
lines changed
Expand file tree Collapse file tree 1 file changed +4
-8
lines changed Original file line number Diff line number Diff line change 77 * For the full copyright and license information, please view the LICENSE
88 * file that was distributed with this source code.
99 */
10-
1110namespace SebastianBergmann \Diff \Output ;
1211
1312use PHPUnit \Framework \TestCase ;
1615/**
1716 * @covers SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder
1817 *
19- * @uses SebastianBergmann\Diff\Differ
20- * @uses SebastianBergmann\Diff\Output\AbstractChunkOutputBuilder
21- * @uses SebastianBergmann\Diff\TimeEfficientLongestCommonSubsequenceCalculator
18+ * @uses SebastianBergmann\Diff\Differ
19+ * @uses SebastianBergmann\Diff\Output\AbstractChunkOutputBuilder
20+ * @uses SebastianBergmann\Diff\TimeEfficientLongestCommonSubsequenceCalculator
2221 */
2322final class UnifiedDiffOutputBuilderTest extends TestCase
2423{
@@ -84,9 +83,6 @@ public function provideDiffWithLineNumbers(): array
8483 }
8584
8685 /**
87- * @param string $from
88- * @param string $to
89- *
9086 * @dataProvider provideStringsThatAreTheSame
9187 */
9288 public function testEmptyDiffProducesEmptyOutput (string $ from , string $ to ): void
@@ -103,7 +99,7 @@ public function provideStringsThatAreTheSame(): array
10399 ['a ' , 'a ' ],
104100 ['these strings are the same ' , 'these strings are the same ' ],
105101 ["\n" , "\n" ],
106- ["multi-line strings \nare the same " , "multi-line strings \nare the same " ]
102+ ["multi-line strings \nare the same " , "multi-line strings \nare the same " ],
107103 ];
108104 }
109105}
You can’t perform that action at this time.
0 commit comments