/
home
/
obinna
/
html
/
amply
/
vendor
/
symfony
/
framework-bundle
/
Test
/
Upload File
HOME
<?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 Symfony\Bundle\FrameworkBundle\Test; use Symfony\Component\Security\Core\Authentication\Token\AbstractToken; use Symfony\Component\Security\Core\User\UserInterface; /** * A very limited token that is used to login in tests using the KernelBrowser. * * @author Wouter de Jong <wouter@wouterj.nl> */ class TestBrowserToken extends AbstractToken { public function __construct(array $roles = [], UserInterface $user = null) { parent::__construct($roles); if (null !== $user) { $this->setUser($user); } } public function getCredentials() { return null; } }