Файл: symfony-2.7/src/Symfony/Bundle/SecurityBundle/EventListener/AclSchemaListener.php
Строк: 36
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <fabien@symfony.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace SymfonyBundleSecurityBundleEventListener;
use SymfonyComponentSecurityAclDbalSchema;
use DoctrineORMToolsEventGenerateSchemaEventArgs;
/**
* Merges ACL schema into the given schema.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
class AclSchemaListener
{
private $schema;
public function __construct(Schema $schema)
{
$this->schema = $schema;
}
public function postGenerateSchema(GenerateSchemaEventArgs $args)
{
$schema = $args->getSchema();
$this->schema->addToSchema($schema);
}
}