本文整理匯總了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();
}