mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-01-31 09:06:17 +00:00
Removing implode(), as its done in the OptionParser now.
This commit is contained in:
parent
b5630a5e30
commit
ae04ae6e8a
1 changed files with 2 additions and 2 deletions
|
@ -495,7 +495,7 @@ class AclShell extends Shell {
|
|||
))->addSubcommand('initdb', array(
|
||||
'help' => __('Initialize the DbAcl tables. Uses this command : cake schema run create DbAcl')
|
||||
))->epilog(
|
||||
implode("\n", array(
|
||||
array(
|
||||
'Node and parent arguments can be in one of the following formats:',
|
||||
'',
|
||||
' - <model>.<id> - The node will be bound to a specific record of the given model.',
|
||||
|
@ -505,7 +505,7 @@ class AclShell extends Shell {
|
|||
" i.e. <group>/<subgroup>/<parent>.",
|
||||
'',
|
||||
"To add a node at the root level, enter 'root' or '/' as the <parent> parameter."
|
||||
))
|
||||
)
|
||||
);
|
||||
return $parser;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue