for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Symplify\SymfonySecurity\Tests\Adapter\Nette\DI\SymfonySecurityExtensionSource;
use Symfony\Component\Security\Core\Authentication\Token\TokenInterface;
use Symfony\Component\Security\Core\Authorization\Voter\VoterInterface;
final class SomeVoter implements VoterInterface
{
/**
* @param TokenInterface $token
* @param mixed $object
* @param array $attributes
*/
public function vote(TokenInterface $token, $object, array $attributes)
}