Skip to content

Commit 3621014

Browse files
committed
remove underscores from console properties (#333)
1 parent daed886 commit 3621014

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

config/rector/sets/cakephp60.php

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,27 @@
6666
],
6767
'Cake\Command\ServerCommand' => ['_host', '_port', '_documentRoot', '_iniPath'],
6868
],
69+
'Console' => [
70+
'Cake\Console\TestSuite\ConsoleIntegrationTestTrait' => ['_exitCode', '_out', '_err', '_in'],
71+
'Cake\Console\TestSuite\StubConsoleOutput' => ['_out'],
72+
'Cake\Console\ConsoleInput' => ['_input', '_canReadline'],
73+
'Cake\Console\ConsoleInputArgument' => [
74+
'_name', '_help', '_required', '_choices', '_default', '_separator',
75+
],
76+
'Cake\Console\ConsoleInputOption' => [
77+
'_name', '_short', '_help', '_boolean', '_default', '_multiple', '_choices', '_separator',
78+
],
79+
'Cake\Console\ConsoleIo' => ['_out', '_err', '_in', '_helpers', '_level', '_lastWritten'],
80+
'Cake\Console\ConsoleOptionParser' => [
81+
'_description', '_epilog', '_options', '_shortOptions', '_args', '_command', '_tokens',
82+
],
83+
'Cake\Console\ConsoleOutput' => [
84+
'_output', '_outputAs', '_foregroundColors', '_backgroundColors', '_options', '_styles',
85+
],
86+
'Cake\Console\Helper' => ['_io'],
87+
'Cake\Console\HelperRegistry' => ['_io'],
88+
'Cake\Console\HelpFormatter' => ['_maxArgs', '_maxOptions', '_parser', '_alias'],
89+
],
6990
'Core' => [
7091
'Cake\Core\StaticConfigTrait' => ['_config', '_dsnClassMap', '_registry'],
7192
],

0 commit comments

Comments
 (0)