使用 Laravel 和 Eloquent 時,通常會遇到 PhpStorm 中缺少 Eloquent Builder 方法的程式碼提示。這可能會成為開發過程中的障礙。然而,laravel-ide-helper 套件為這個問題提供了一個解決方案。
laravel-ide-helper 套件透過產生模型 PHPDocs 為 PhpStorm 中的程式碼提示提供了優雅的解決方案。若要解決上述程式碼提示問題,請依照下列步驟操作:
安裝laravel-ide-helper 套件:
<code class="sh">composer require barryvdh/laravel-ide-helper</code>
產生PHPDocs:
<code class="sh">php artisan ide-helper:models</code>
將PHPDocs 寫入模型檔:
<code class="sh">php artisan ide-helper:models -W</code>
以上是如何使用 Laravel IDE Helper 增強 PhpStorm 中 Eloquent ORM 的程式碼提示?的詳細內容。更多資訊請關注PHP中文網其他相關文章!