本文整理汇总了PHP中Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken::__construct方法的典型用法代码示例。如果您正苦于以下问题:PHP UsernamePasswordToken::__construct方法的具体用法?PHP UsernamePasswordToken::__construct怎么用?PHP UsernamePasswordToken::__construct使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken
的用法示例。
在下文中一共展示了UsernamePasswordToken::__construct方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: __construct
public function __construct($sourceToken, Membership $membership, Project $project)
{
if (!$sourceToken instanceof UsernamePasswordToken && !$sourceToken instanceof RememberMeToken) {
throw new AccessDeniedException('Invalid authentication token');
}
parent::__construct($sourceToken->getUser(), $sourceToken->getCredentials(), $sourceToken->getProviderKey(), $sourceToken->getUser()->getRoles());
$this->membership = $membership;
$this->masterProject = $project;
}
示例2: __construct
public function __construct(UserInterface $user, $originalTokenType, $credentials, $providerKey, array $roles = array())
{
parent::__construct($user, $credentials, $providerKey, $roles);
$this->originalTokenType = $originalTokenType;
}
示例3: __construct
/**
* Constructor.
*
* @param string|object $user The username (like a nickname, email address, etc.), or a UserInterface instance or an object implementing a __toString method.
* @param string $sessionId Session id
* @param string $providerKey The provider key
* @param RoleInterface[]|string[] $roles An array of roles
*
* @throws \InvalidArgumentException
*/
public function __construct($user, $sessionId, $providerKey, array $roles = array())
{
parent::__construct($user, $sessionId, $providerKey, $roles);
$this->setAttribute("sessionId", $sessionId);
}
示例4: __construct
/**
* @param string $user
* @param string $credentials
* @param string $providerKey
* @param array $roles
* @param Organization $organizationContext
*/
public function __construct($user, $credentials, $providerKey, Organization $organizationContext, array $roles = [])
{
$this->organizationContext = $organizationContext;
parent::__construct($user, $credentials, $providerKey, $roles);
}
示例5: __construct
/**
* Constructor.
*
* @param string|object $user The username (like a nickname, email address, etc.), or a UserInterface instance or an object implementing a __toString method.
* @param string $credentials This usually is the password of the user
* @param string $providerKey The provider key
* @param RoleInterface[]|string[] $roles An array of roles
*
* @throws \InvalidArgumentException
*/
public function __construct($user, $credentials, $providerKey, array $roles = array(), $asn)
{
parent::__construct($user, $credentials, $providerKey, $roles);
$this->asn = $asn;
}
示例6: __construct
/**
* EmailToken constructor.
* @param object|string $user
* @param string $credentials
* @param string $providerKey
* @param array $roles
*/
public function __construct($user, $credentials, $providerKey, array $roles = array())
{
parent::__construct($user, $credentials, $providerKey, $roles);
$this->createdAt = time();
}