Skip to content

Commit daed886

Browse files
committed
remove underscores from command properties (#332)
1 parent 766a895 commit daed886

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

config/rector/sets/cakephp60.php

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,6 @@
4040
'Cake\Cache\Cache' => ['_enabled', '_groups'],
4141
'Cake\Cache\CacheEngine' => ['_groupPrefix'],
4242
],
43-
'Core' => [
44-
'Cake\Core\StaticConfigTrait' => ['_config', '_dsnClassMap', '_registry'],
45-
],
4643
'Collection' => [
4744
'Cake\Collection\Iterator\BufferedIterator' => [
4845
'_buffer', '_index', '_current', '_key', '_started', '_finished',
@@ -61,6 +58,17 @@
6158
'Cake\Collection\Iterator\UnfoldIterator' => ['_unfolder', '_innerIterator'],
6259
'Cake\Collection\Iterator\ZipIterator' => ['_callback', '_iterators'],
6360
],
61+
'Command' => [
62+
'Cake\Command\Helper\ProgressHelper' => ['_progress', '_total', '_width'],
63+
'Cake\Command\I18nExtractCommand' => [
64+
'_paths', '_files', '_merge', '_file', '_storage', '_tokens', '_translations',
65+
'_output', '_exclude', '_extractCore', '_markerError', '_countMarkerError',
66+
],
67+
'Cake\Command\ServerCommand' => ['_host', '_port', '_documentRoot', '_iniPath'],
68+
],
69+
'Core' => [
70+
'Cake\Core\StaticConfigTrait' => ['_config', '_dsnClassMap', '_registry'],
71+
],
6472
'Utility' => [
6573
'Cake\Utility\Inflector' => [
6674
'_plural', '_singular', '_irregular', '_uninflected', '_cache', '_initialState',

0 commit comments

Comments
 (0)