If you use a popular framework like Symfony, Doctrine or Laravel etc., make sure you install a corresponding extension. It will improve understanding of your code, and also comes with extra rules for correct usage.
root@8e2c80c182a6:/workspace# vendor/bin/phpstan analyse --level 9 app
21/21 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%
------ -----------------------------------------------------------------------------------------
Line Http/Controllers/Api/PostsController.php
------ -----------------------------------------------------------------------------------------
12 Method App\\Http\\Controllers\\Api\\PostsController::getList() has no return type
specified.
16 Call to an undefined method
Illuminate\\Contracts\\Routing\\ResponseFactory|Illuminate\\Http\\Response::json().
19 Method App\\Http\\Controllers\\Api\\PostsController::getBy() has no return type specified.
21 Call to an undefined static method App\\Models\\Posts::find().
23 Call to an undefined method
Illuminate\\Contracts\\Routing\\ResponseFactory|Illuminate\\Http\\Response::json().
26 Method App\\Http\\Controllers\\Api\\PostsController::save() has no return type specified.
30 Call to an undefined static method App\\Models\\Posts::find().
36 Call to an undefined method
Illuminate\\Contracts\\Routing\\ResponseFactory|Illuminate\\Http\\Response::json().
39 Method App\\Http\\Controllers\\Api\\PostsController::delete() has no return type specified.
41 Call to an undefined static method App\\Models\\Posts::find().
47 Call to an undefined method
Illuminate\\Contracts\\Routing\\ResponseFactory|Illuminate\\Http\\Response::json().
------ -----------------------------------------------------------------------------------------
------ ----------------------------------------------------------------------------
Line Http/Middleware/RedirectIfAuthenticated.php
------ ----------------------------------------------------------------------------
24 Method App\\Http\\Middleware\\RedirectIfAuthenticated::handle() should return
Symfony\\Component\\HttpFoundation\\Response but returns
Illuminate\\Http\\RedirectResponse|Illuminate\\Routing\\Redirector.
------ ----------------------------------------------------------------------------
------ --------------------------------------
Line Providers/RouteServiceProvider.php
------ --------------------------------------
28 Cannot access property $id on mixed.
------ --------------------------------------
[ERROR] Found 13 errors
// 検証レベルは設定ファイルで指定しているので、optionsは未指定です
root@8e2c80c182a6:/workspace# ./vendor/bin/phpstan analyse
Note: Using configuration file /workspace/phpstan.neon.
21/21 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%
[OK] No errors
PHPStanと同様にエラーは出ませんでした。
level:5
root@8e2c80c182a6:/workspace# ./vendor/bin/phpstan analyse
Note: Using configuration file /workspace/phpstan.neon.
21/21 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%
------ --------------------------------------------------------------------------
Line Http/Controllers/Api/PostsController.php
------ --------------------------------------------------------------------------
32 Access to an undefined property
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int,
App\\Models\\Posts>::$title.
💡 Learn more:
<https://phpstan.org/blog/solving-phpstan-access-to-undefined-property>
33 Access to an undefined property
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int,
App\\Models\\Posts>::$content.
💡 Learn more:
<https://phpstan.org/blog/solving-phpstan-access-to-undefined-property>
------ --------------------------------------------------------------------------
[ERROR] Found 2 errors
PHPStanの場合に出力されていた、以下エラーが無くなりました。
Line Http/Controllers/Api/PostsController.php
21 Call to an undefined static method App\Models\Posts::find().
(マジックメソッドによる正常なアクセスであることを検知してくれている模様)
ですが、新しく以下エラーが検知されました。
Line Http/Controllers/Api/PostsController.php
32 Access to an undefined property
App\Models\Posts|Illuminate\Database\Eloquent\Collection<int,
App\Models\Posts>::$title.
root@8e2c80c182a6:/workspace# ./vendor/bin/phpstan analyse
Note: Using configuration file /workspace/phpstan.neon.
21/21 [▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓▓] 100%
------ -----------------------------------------------------------------------------------------
Line Http/Controllers/Api/PostsController.php
------ -----------------------------------------------------------------------------------------
12 Method App\\Http\\Controllers\\Api\\PostsController::getList() has no return type
specified.
19 Method App\\Http\\Controllers\\Api\\PostsController::getBy() has no return type specified.
23 Cannot call method toArray() on
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int, App\\Models\\Posts>|null.
26 Method App\\Http\\Controllers\\Api\\PostsController::save() has no return type specified.
32 Cannot access property $title on
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int, App\\Models\\Posts>|null.
33 Cannot access property $content on
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int, App\\Models\\Posts>|null.
34 Cannot call method save() on
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int, App\\Models\\Posts>|null.
39 Method App\\Http\\Controllers\\Api\\PostsController::delete() has no return type specified.
46 Call to an undefined method
App\\Models\\Posts|Illuminate\\Database\\Eloquent\\Collection<int,
App\\Models\\Posts>::delete().
------ -----------------------------------------------------------------------------------------
[ERROR] Found 9 errors
Line Http/Middleware/RedirectIfAuthenticated.php
24 Method App\Http\Middleware\RedirectIfAuthenticated::handle() should return
Symfony\Component\HttpFoundation\Response but returns
Illuminate\Http\RedirectResponse|Illuminate\Routing\Redirector.
で、新規でいくつかエラーが検知。
23 Cannot call method toArray() on
App\Models\Posts|Illuminate\Database\Eloquent\Collection<int, App\Models\Posts>|null.
コメント