fix class existence

This commit is contained in:
Christian Flothmann 2018-05-25 10:37:07 +02:00 committed by Fabien Potencier
parent e65a122d17
commit a1166b5527

View File

@ -18,7 +18,6 @@ use Symfony\Component\DependencyInjection\Exception\LogicException;
use Symfony\Component\DependencyInjection\Reference;
use Symfony\Component\Security\Core\Authorization\AccessDecisionManager;
use Symfony\Component\Security\Core\Authorization\Voter\Voter;
use Symfony\Component\Security\Core\Tests\Authorization\Stub\VoterWithoutInterface;
class AddSecurityVotersPassTest extends TestCase
{
@ -122,3 +121,10 @@ class AddSecurityVotersPassTest extends TestCase
$compilerPass->process($container);
}
}
class VoterWithoutInterface
{
public function vote()
{
}
}