Skip to content

Commit 17979e5

Browse files
committed
Disable requiring size and covers by default
1 parent ebe667e commit 17979e5

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
@@ -136,14 +136,16 @@ public function __construct()
136136
'php_unit_mock_short_will_return' => true,
137137
'php_unit_namespaced' => true,
138138
'php_unit_set_up_tear_down_visibility' => true,
139+
'php_unit_size_class' => false,
139140
'php_unit_test_annotation' => ['style' => 'prefix'],
140141
'php_unit_test_case_static_method_calls' => [
141142
'call_type' => 'this',
142143
'methods' => [],
143144
],
144-
'phpdoc_align' => true,
145-
'phpdoc_indent' => true,
146-
'phpdoc_inline_tag_normalizer' => [
145+
'php_unit_test_class_requires_covers' => false,
146+
'phpdoc_align' => true,
147+
'phpdoc_indent' => true,
148+
'phpdoc_inline_tag_normalizer' => [
147149
'tags' => [
148150
'example',
149151
'id',

0 commit comments

Comments
 (0)