just update

This commit is contained in:
Gustavo Piltcher 2011-12-01 13:33:03 -02:00
parent b20b15bd4c
commit 315bfc472a
2 changed files with 2 additions and 13 deletions

View File

@ -35,7 +35,7 @@ class InitAclCommand extends ContainerAwareCommand
->setHelp(<<<EOT
The <info>init:acl</info> command mounts ACL tables in the database.
<info>php app/console ini:acl</info>
<info>php app/console init: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.

View File

@ -12,7 +12,7 @@
namespace Symfony\Component\Security\Acl\Dbal;
use Doctrine\DBAL\Schema\Schema as BaseSchema;
use Doctrine\DBAL\Schema\SchemaConfig as SchemaConfig;
use Doctrine\DBAL\Schema\SchemaConfig;
/**
* The schema used for the ACL system.
@ -27,7 +27,6 @@ final class Schema extends BaseSchema
* Constructor
*
* @param array $options the names for tables
* @return void
*/
public function __construct(array $options, $unused=null, SchemaConfig $schemaConfig=null)
{
@ -44,8 +43,6 @@ final class Schema extends BaseSchema
/**
* Adds the class table to the schema
*
* @return void
*/
protected function addClassTable()
{
@ -58,8 +55,6 @@ final class Schema extends BaseSchema
/**
* Adds the entry table to the schema
*
* @return void
*/
protected function addEntryTable()
{
@ -88,8 +83,6 @@ final class Schema extends BaseSchema
/**
* Adds the object identity table to the schema
*
* @return void
*/
protected function addObjectIdentitiesTable()
{
@ -110,8 +103,6 @@ final class Schema extends BaseSchema
/**
* Adds the object identity relation table to the schema
*
* @return void
*/
protected function addObjectIdentityAncestorsTable()
{
@ -129,8 +120,6 @@ final class Schema extends BaseSchema
/**
* Adds the security identity table to the schema
*
* @return void
*/
protected function addSecurityIdentitiesTable()
{