You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PHPStan: Ignore "Dynamic call to static method" errors
The following route:
Route::get('/', function(\Illuminate\Contracts\Filesystem\Filesystem $factory) {
return $factory->download('foo.csv');
});
currently results in the following false-positive error:
------ ------------------------------------------------------------------------------------
Line routes/web.php
------ ------------------------------------------------------------------------------------
22 Dynamic call to static method Illuminate\Filesystem\FilesystemAdapter::download().
------ ------------------------------------------------------------------------------------
See phpstan/phpstan-strict-rules#140
0 commit comments