From 443acd6e547f3b9a61695e14d86286b3c1380039 Mon Sep 17 00:00:00 2001 From: hms5232 <43672033+hms5232@users.noreply.github.com> Date: Tue, 1 Oct 2024 19:19:01 +0800 Subject: [PATCH] Make all "note" in README apply quote style Now, those "note" stand out in text sea --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fa4584eeb..d69369366 100644 --- a/README.md +++ b/README.md @@ -76,7 +76,7 @@ _Check out [this Laracasts video](https://laracasts.com/series/how-to-be-awesome - `php artisan ide-helper:meta` - [PhpStorm Meta file](#phpstorm-meta-for-container-instances) -Note: You do need CodeComplice for Sublime Text: https://github.com/spectacles/CodeComplice +> Note: You do need CodeComplice for Sublime Text: https://github.com/spectacles/CodeComplice ### Automatic PHPDoc generation for Laravel Facades @@ -86,7 +86,7 @@ You can now re-generate the docs yourself (for future updates) php artisan ide-helper:generate ``` -Note: `bootstrap/compiled.php` has to be cleared first, so run `php artisan clear-compiled` before generating. +> Note: `bootstrap/compiled.php` has to be cleared first, so run `php artisan clear-compiled` before generating. 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. @@ -115,7 +115,7 @@ You can use an in-memory SQLite driver by adding the `-M` option. 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. -**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. +> **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. You can choose to include helper files. This is not enabled by default, but you can override it with the `--helpers (-H)` option. 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); ``` > Note: You might need to restart PhpStorm and make sure `.phpstorm.meta.php` is indexed. -> + > Note: When you receive a FatalException: class not found, check your config > (for example, remove S3 as cloud driver when you don't have S3 configured. Remove Redis ServiceProvider when you don't use it).