Skip to content

Commit

Permalink
[SecurityBundle] added short description and help for the init:acl co…
Browse files Browse the repository at this point in the history
…mmand.
  • Loading branch information
Hugo Hamon committed Jul 28, 2011
1 parent e90efdc commit e16ccaa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion src/Symfony/Bundle/SecurityBundle/Command/InitAclCommand.php
Expand Up @@ -31,7 +31,19 @@ protected function configure()
{
$this
->setName('init:acl')
;
->setDescription('Mounts ACL tables in the database')
->setHelp(<<<EOT
The <info>init:acl</info> command mounts ACL tables in the database.
<info>php app/console ini:acl</info>
The name of the DBAL connection must be configured in your <info>app/config/security.yml</info> configuration file in the <info>security.acl.connection</info> variable.
<info>security:
acl:
connection: default</info>
EOT
);
}

/**
Expand Down

0 comments on commit e16ccaa

Please sign in to comment.