Skip to content

Commit be1410b

Browse files
Zach Baileysebastianbergmann
authored andcommitted
fix coding standards
1 parent 0d2a0f4 commit be1410b

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

tests/Output/UnifiedDiffOutputBuilderTest.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.
99
*/
10-
1110
namespace SebastianBergmann\Diff\Output;
1211

1312
use PHPUnit\Framework\TestCase;
@@ -16,9 +15,9 @@
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
*/
2322
final 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
}

0 commit comments

Comments
 (0)