Skip to content

Commit b076441

Browse files
Remove superfluous annotations
1 parent f588337 commit b076441

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

tests/Output/StrictUnifiedDiffOutputBuilderTest.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,17 +32,11 @@ final class StrictUnifiedDiffOutputBuilderTest extends TestCase
3232
{
3333
use UnifiedDiffAssertTrait;
3434

35-
/**
36-
* @inheritDoc
37-
*/
3835
public static function provideOutputBuildingCases(): array
3936
{
4037
return StrictUnifiedDiffOutputBuilderDataProvider::provideOutputBuildingCases();
4138
}
4239

43-
/**
44-
* @inheritDoc
45-
*/
4640
public static function provideSample(): array
4741
{
4842
return StrictUnifiedDiffOutputBuilderDataProvider::provideSample();
@@ -523,9 +517,6 @@ public function testSample(string $expected, string $from, string $to, array $op
523517
$this->assertSame($expected, $diff);
524518
}
525519

526-
/**
527-
* @inheritDoc
528-
*/
529520
public function assertValidDiffFormat(string $diff): void
530521
{
531522
$this->assertValidUnifiedDiffFormat($diff);

tests/ParserTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ public function testParseWithRemovedLines(): void
150150
$this->assertContainsOnlyInstancesOf(Line::class, $lines);
151151
$this->assertCount(2, $lines);
152152

153-
/** @var Line $line */
154153
$line = $lines[0];
155154
$this->assertSame('A', $line->content());
156155
$this->assertSame(Line::UNCHANGED, $line->type());
@@ -182,7 +181,6 @@ public function testParseDiffForMulitpleFiles(): void
182181
$diffs = $this->parser->parse($content);
183182
$this->assertCount(2, $diffs);
184183

185-
/** @var Diff $diff */
186184
$diff = $diffs[0];
187185
$this->assertSame('a/Test.txt', $diff->from());
188186
$this->assertSame('b/Test.txt', $diff->to());

0 commit comments

Comments
 (0)