Fix AclSchemaListener deprecation

This commit is contained in:
Robin Chalas 2017-09-27 23:42:53 +02:00
parent b46f9956c2
commit eebe39e600

View File

@ -11,7 +11,7 @@
namespace Symfony\Bundle\SecurityBundle\EventListener;
@trigger_error(sprintf('Class "%s" is deprecated since version 3.4 and will be removed in 4.0. Use Symfony\Bundle\AclBundle\EventListener\SetAclCommand instead.', AclSchemaListener::class), E_USER_DEPRECATED);
@trigger_error(sprintf('Class "%s" is deprecated since version 3.4 and will be removed in 4.0. Use Symfony\Bundle\AclBundle\EventListener\AclSchemaListener instead.', AclSchemaListener::class), E_USER_DEPRECATED);
use Symfony\Component\Security\Acl\Dbal\Schema;
use Doctrine\ORM\Tools\Event\GenerateSchemaEventArgs;