phpstorm - In Laravel, what is meant by the term "clear compiled class" -
i'm trying use service class in laravel called ide-helper. provides auto completion phpstorm. not functioning expected. have been advised should run php artisan clear-compiled.
what term "clear compiled" mean ?
https://github.com/barryvdh/laravel-ide-helper#automatic-phpdoc-generation-for-laravel-facades
many
laravel uses optimized class loader better performance.
the command php artisan clear-compiled
deletes following 2 files:
bootstrap/compiled.php
created when optimize classes.app/storage/meta/services.json
file created laravel tries optimize loading of service providers application uses.
for more information on performance optimizing see http://laravel-recipes.com/recipes/60/optimizing-the-framework-for-better-performance
Comments
Post a Comment