Skip to content

Commit

Permalink
Fix stan
Browse files Browse the repository at this point in the history
  • Loading branch information
o0h committed Nov 11, 2024
1 parent d68c628 commit a7d17c9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/Differ/DiffCollector.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function getPhpDiffs(bool $includeNonAstChanged = true): array
/**
* Get the non-PHP diffs.
*
* @return array<Diff> the array of non-PHP diffs
* @return list<Diff> the array of non-PHP diffs
*/
public function getNonPhpDiffs(): array
{
Expand Down
1 change: 0 additions & 1 deletion tests/unit/Differ/DiffFactoryTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public function testCreateForNonPhp(): void

$diff = $subject->createForNonPhp($path, $status);

$this->assertInstanceOf(Diff::class, $diff);
$this->assertSame($path, $diff->path);
$this->assertSame($status, $diff->status);
}
Expand Down

0 comments on commit a7d17c9

Please sign in to comment.