diff options
author | Gustavo Piltcher <gustavo.piltcher@fixedby.us> | 2011-12-01 13:33:03 -0200 |
---|---|---|
committer | Gustavo Piltcher <gustavo.piltcher@fixedby.us> | 2011-12-01 13:33:03 -0200 |
commit | ee167833155c94af04d43fb499cd30b792294df0 (patch) | |
tree | fa4e6a5fca2ca4668764c33db23ccb30fc04a6c8 | |
parent | dd4485313c0e34cfe49c5f4fbf5573b961f526d4 (diff) | |
download | symfony-security-ee167833155c94af04d43fb499cd30b792294df0.zip symfony-security-ee167833155c94af04d43fb499cd30b792294df0.tar.gz symfony-security-ee167833155c94af04d43fb499cd30b792294df0.tar.bz2 |
just update
-rw-r--r-- | Acl/Dbal/Schema.php | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Acl/Dbal/Schema.php b/Acl/Dbal/Schema.php index 15cb9c7..f75e822 100644 --- a/Acl/Dbal/Schema.php +++ b/Acl/Dbal/Schema.php @@ -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() { |