![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/vendor/symfony/security-core/Authentication/Token/ |
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <[email protected]> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Security\Core\Authentication\Token; /** * @author Wouter de Jong <[email protected]> */ class NullToken implements TokenInterface { public function __toString(): string { return ''; } public function getRoleNames(): array { return []; } public function getCredentials() { return ''; } public function getUser() { return null; } public function setUser($user) { throw new \BadMethodCallException('Cannot set user on a NullToken.'); } public function getUsername() { trigger_deprecation('symfony/security-core', '5.3', 'Method "%s()" is deprecated, use getUserIdentifier() instead.', __METHOD__); return ''; } public function getUserIdentifier(): string { return ''; } /** * @deprecated since Symfony 5.4 */ public function isAuthenticated() { if (0 === \func_num_args() || func_get_arg(0)) { trigger_deprecation('symfony/security-core', '5.4', 'Method "%s()" is deprecated, return null from "getUser()" instead when a token is not authenticated.', __METHOD__); } return true; } /** * @deprecated since Symfony 5.4 */ public function setAuthenticated(bool $isAuthenticated) { throw new \BadMethodCallException('Cannot change authentication state of NullToken.'); } public function eraseCredentials() { } public function getAttributes() { return []; } public function setAttributes(array $attributes) { throw new \BadMethodCallException('Cannot set attributes of NullToken.'); } public function hasAttribute(string $name) { return false; } public function getAttribute(string $name) { return null; } public function setAttribute(string $name, $value) { throw new \BadMethodCallException('Cannot add attribute to NullToken.'); } public function __serialize(): array { return []; } public function __unserialize(array $data): void { } /** * @return string * * @internal in 5.3 * * @final in 5.3 */ public function serialize() { return ''; } /** * @return void * * @internal in 5.3 * * @final in 5.3 */ public function unserialize($serialized) { } }