Skip to content

Commit 36613e6

Browse files
committed
Disable requiring size and covers by default
1 parent 11023cc commit 36613e6

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

utils/PhpCsFixer/CodeIgniter4.php

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,14 +158,16 @@ public function __construct()
158158
'use_class_const' => true,
159159
],
160160
'php_unit_set_up_tear_down_visibility' => true,
161+
'php_unit_size_class' => false,
161162
'php_unit_test_annotation' => ['style' => 'prefix'],
162163
'php_unit_test_case_static_method_calls' => [
163164
'call_type' => 'this',
164165
'methods' => [],
165166
],
166-
'phpdoc_align' => true,
167-
'phpdoc_indent' => true,
168-
'phpdoc_inline_tag_normalizer' => [
167+
'php_unit_test_class_requires_covers' => false,
168+
'phpdoc_align' => true,
169+
'phpdoc_indent' => true,
170+
'phpdoc_inline_tag_normalizer' => [
169171
'tags' => [
170172
'example',
171173
'id',

0 commit comments

Comments
 (0)