Laravel-ide-helper 生成模型註釋的兩種方法

hustnzj發表於2018-12-06

多個模型:直接php artisan ide-helper:models,當然也可以php artisan ide-helper:models -W

單個模型:這個不能按照github上的readme來,坑爹。必須指明具體的類全名:php artisan ide-helper:models "App\Models\User"

至於readme上寫的:

> php artisan ide-helper:models Post User

php artisan ide-helper:models --dir="path/to/models" --dir="app/src/Model"

我試了很多次都沒有成功,感覺或許是有BUG,在
vendor/barryvdh/laravel-ide-helper/src/Console/ModelsCommand.php

if (class_exists($name)) {

但也可能跟此包依賴的其他包的版本有關係吧。。。

相關文章