phpstan-extensions
phpstan-extensions copied to clipboard
False-positive 'variable is unused' for variables used in compact
------ ----------------------------------------------------------------------------------------
Line someClassFile.php
------ ----------------------------------------------------------------------------------------
45 [Line 47] Function makeNotificationFromFixture() has an unused variable $createdAt.
private static function makeNotificationFromFixture($fixtureData): array
{
$createdAt = 'some value';
// …
return array_merge(
['foo'],
compact('createdAt')
);
}
Nice catch, I'll try to handle this
@b1rdex if you still around, maybe you can give #56 a try