diff --git a/config/ide-helper.php b/config/ide-helper.php index 1500783aa..433e390ff 100644 --- a/config/ide-helper.php +++ b/config/ide-helper.php @@ -34,6 +34,7 @@ | `.phpstorm.meta.php/laravel_ide_Helper.php'. | */ + 'meta_filename' => '.phpstorm.meta.php', /* @@ -225,6 +226,7 @@ | Note, it is currently an all-or-nothing option. | */ + 'model_camel_case_properties' => false, /* @@ -235,6 +237,7 @@ | Cast the given "real type" to the given "type". | */ + 'type_overrides' => [ 'integer' => 'int', 'boolean' => 'bool', @@ -249,6 +252,7 @@ | magic methods and properties. | */ + 'include_class_docblocks' => false, /* @@ -261,6 +265,7 @@ | or there is an import (use className) of the class. | */ + 'force_fqn' => false, /* @@ -272,6 +277,7 @@ | e.g. `Collection` instead of `Collection|User[]`. | */ + 'use_generics_annotations' => true, /* @@ -284,6 +290,7 @@ | class name of the relationship, e.g. `'relationName' => RelationShipClass::class`. | */ + 'additional_relation_types' => [], /* @@ -298,6 +305,7 @@ | e.g. `'relationName' => 'many'`. | */ + 'additional_relation_return_types' => [], /* @@ -331,6 +339,7 @@ | The specified commands should run after migrations are finished running. | */ + 'post_migrate' => [ // 'ide-helper:models --nowrite', ], @@ -344,6 +353,7 @@ | You can add any custom trait that behaves like the original Laravel one. | */ + 'macroable_traits' => [ Filament\Support\Concerns\Macroable::class, Spatie\Macroable\Macroable::class,