lithium\console\Dispatcher::$_rules
Contains pre-process format strings for changing Dispatcher's behavior based on 'rules'.
Each key in the array represents a 'rule'; if a key that matches the rule is present (and
not empty) in a route, (i.e. the result of lithium\console\Router::parse()
) then the rule's
value will be applied to the route before it is dispatched. When applying a rule, any array
elements array elements of the flag which are present in the route will be modified using a
lithium\util\Text::insert()
-formatted string.
Source
protected static $_rules = [
'command' => [['lithium\util\Inflector', 'camelize']],
'action' => [['lithium\util\Inflector', 'camelize', [false]]]
];