login consent app sql
This commit is contained in:
21
vendor/symfony/security-http/LoginLink/Exception/ExpiredLoginLinkException.php
vendored
Normal file
21
vendor/symfony/security-http/LoginLink/Exception/ExpiredLoginLinkException.php
vendored
Normal file
@ -0,0 +1,21 @@
|
||||
<?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\Component\Security\Http\LoginLink\Exception;
|
||||
|
||||
use Symfony\Component\Security\Core\Signature\Exception\ExpiredSignatureException;
|
||||
|
||||
/**
|
||||
* @author Ryan Weaver <ryan@symfonycasts.com>
|
||||
*/
|
||||
class ExpiredLoginLinkException extends ExpiredSignatureException implements InvalidLoginLinkExceptionInterface
|
||||
{
|
||||
}
|
30
vendor/symfony/security-http/LoginLink/Exception/InvalidLoginLinkAuthenticationException.php
vendored
Normal file
30
vendor/symfony/security-http/LoginLink/Exception/InvalidLoginLinkAuthenticationException.php
vendored
Normal file
@ -0,0 +1,30 @@
|
||||
<?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\Component\Security\Http\LoginLink\Exception;
|
||||
|
||||
use Symfony\Component\Security\Core\Exception\AuthenticationException;
|
||||
|
||||
/**
|
||||
* Thrown when a login link is invalid.
|
||||
*
|
||||
* @author Ryan Weaver <ryan@symfonycasts.com>
|
||||
*/
|
||||
class InvalidLoginLinkAuthenticationException extends AuthenticationException
|
||||
{
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function getMessageKey()
|
||||
{
|
||||
return 'Invalid or expired login link.';
|
||||
}
|
||||
}
|
19
vendor/symfony/security-http/LoginLink/Exception/InvalidLoginLinkException.php
vendored
Normal file
19
vendor/symfony/security-http/LoginLink/Exception/InvalidLoginLinkException.php
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<?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\Component\Security\Http\LoginLink\Exception;
|
||||
|
||||
/**
|
||||
* @author Ryan Weaver <ryan@symfonycasts.com>
|
||||
*/
|
||||
class InvalidLoginLinkException extends \RuntimeException implements InvalidLoginLinkExceptionInterface
|
||||
{
|
||||
}
|
19
vendor/symfony/security-http/LoginLink/Exception/InvalidLoginLinkExceptionInterface.php
vendored
Normal file
19
vendor/symfony/security-http/LoginLink/Exception/InvalidLoginLinkExceptionInterface.php
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
<?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\Component\Security\Http\LoginLink\Exception;
|
||||
|
||||
/**
|
||||
* @author Ryan Weaver <ryan@symfonycasts.com>
|
||||
*/
|
||||
interface InvalidLoginLinkExceptionInterface extends \Throwable
|
||||
{
|
||||
}
|
Reference in New Issue
Block a user