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 7
7
* For the full copyright and license information, please view the LICENSE
8
8
* file that was distributed with this source code.
9
9
*/
10
-
11
10
namespace SebastianBergmann \Diff \Output ;
12
11
13
12
use PHPUnit \Framework \TestCase ;
16
15
/**
17
16
* @covers SebastianBergmann\Diff\Output\UnifiedDiffOutputBuilder
18
17
*
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
22
21
*/
23
22
final class UnifiedDiffOutputBuilderTest extends TestCase
24
23
{
@@ -84,9 +83,6 @@ public function provideDiffWithLineNumbers(): array
84
83
}
85
84
86
85
/**
87
- * @param string $from
88
- * @param string $to
89
- *
90
86
* @dataProvider provideStringsThatAreTheSame
91
87
*/
92
88
public function testEmptyDiffProducesEmptyOutput (string $ from , string $ to ): void
@@ -103,7 +99,7 @@ public function provideStringsThatAreTheSame(): array
103
99
['a ' , 'a ' ],
104
100
['these strings are the same ' , 'these strings are the same ' ],
105
101
["\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 " ],
107
103
];
108
104
}
109
105
}
You can’t perform that action at this time.
0 commit comments