Skip to content

Commit 5c11c9b

Browse files
committed
Enable other options of fully_qualified_strict_types
1 parent 4cd8fee commit 5c11c9b

File tree

1 file changed

+26
-2
lines changed

1 file changed

+26
-2
lines changed

src/CodeIgniter4.php

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,8 +157,32 @@ public function __construct()
157157
'fopen_flag_order' => true,
158158
'fopen_flags' => ['b_mode' => true],
159159
'full_opening_tag' => true,
160-
'fully_qualified_strict_types' => ['leading_backslash_in_global_namespace' => false],
161-
'function_declaration' => [
160+
'fully_qualified_strict_types' => [
161+
'import_symbols' => false,
162+
'leading_backslash_in_global_namespace' => false,
163+
'phpdoc_tags' => [
164+
'param',
165+
'phpstan-param',
166+
'phpstan-property',
167+
'phpstan-property-read',
168+
'phpstan-property-write',
169+
'phpstan-return',
170+
'phpstan-var',
171+
'property',
172+
'property-read',
173+
'property-write',
174+
'psalm-param',
175+
'psalm-property',
176+
'psalm-property-read',
177+
'psalm-property-write',
178+
'psalm-return',
179+
'psalm-var',
180+
'return',
181+
'throws',
182+
'var',
183+
],
184+
],
185+
'function_declaration' => [
162186
'closure_function_spacing' => 'one',
163187
'closure_fn_spacing' => 'one',
164188
'trailing_comma_single_line' => false,

0 commit comments

Comments
 (0)