You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,7 +76,7 @@ _Check out [this Laracasts video](https://laracasts.com/series/how-to-be-awesome
76
76
-`php artisan ide-helper:meta` - [PhpStorm Meta file](#phpstorm-meta-for-container-instances)
77
77
78
78
79
-
Note: You do need CodeComplice for Sublime Text: https://github.com/spectacles/CodeComplice
79
+
> Note: You do need CodeComplice for Sublime Text: https://github.com/spectacles/CodeComplice
80
80
81
81
### Automatic PHPDoc generation for Laravel Facades
82
82
@@ -86,7 +86,7 @@ You can now re-generate the docs yourself (for future updates)
86
86
php artisan ide-helper:generate
87
87
```
88
88
89
-
Note: `bootstrap/compiled.php` has to be cleared first, so run `php artisan clear-compiled` before generating.
89
+
> Note: `bootstrap/compiled.php` has to be cleared first, so run `php artisan clear-compiled` before generating.
90
90
91
91
This will generate the file `_ide_helper.php` which is expected to be additionally parsed by your IDE for autocomplete. You can use the config `filename` to change its name.
92
92
@@ -115,7 +115,7 @@ You can use an in-memory SQLite driver by adding the `-M` option.
115
115
116
116
If you use [real-time facades](https://laravel.com/docs/master/facades#real-time-facades) in your app, those will also be included in the generated file using a `@mixin` annotation and extending the original class underneath the facade.
117
117
118
-
**Note**: this feature uses the generated real-time facades files in the `storage/framework/cache` folder. Those files are generated on-demand as you use the real-time facade, so if the framework has not generated that first, it will not be included in the helper file. Run the route/command/code first and then regenerate the helper file and this time the real-time facade will be included in it.
118
+
> **Note**: this feature uses the generated real-time facades files in the `storage/framework/cache` folder. Those files are generated on-demand as you use the real-time facade, so if the framework has not generated that first, it will not be included in the helper file. Run the route/command/code first and then regenerate the helper file and this time the real-time facade will be included in it.
119
119
120
120
You can choose to include helper files. This is not enabled by default, but you can override it with the `--helpers (-H)` option.
121
121
The `Illuminate/Support/helpers.php` is already set up, but you can add/remove your own files in the config file.
@@ -382,7 +382,7 @@ app(App\SomeClass::class);
382
382
```
383
383
384
384
> Note: You might need to restart PhpStorm and make sure `.phpstorm.meta.php` is indexed.
385
-
>
385
+
386
386
> Note: When you receive a FatalException: class not found, check your config
387
387
> (for example, remove S3 as cloud driver when you don't have S3 configured. Remove Redis ServiceProvider when you don't use it).
0 commit comments