1.laravel-ide-helper 地址https://github.com/barryvdh/laravel-ide-helper
在項目根目錄執行composer安裝命令
composer
require
barryvdh/laravel-ide-helper:
'2.1.0'
2.在app/bootstrap中的app.php中加入IdeHelperServiceProvider的注冊代碼
$app->register(Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider::class);
3.打開命令行切換到項目根目錄執行以下命令
php artisan ide-helper:generate - phpDoc generation for Laravel Facades php artisan ide-helper:models - phpDocs for models php artisan ide-helper:meta - PhpStorm Meta file
命令執行完成後會在目錄中生成一個_ide_helper.php文件。