Файл: gapps/vendor/laravel/framework/src/Illuminate/Auth/AuthenticationException.php
Строк: 37
<?php
namespace IlluminateAuth;
use Exception;
class AuthenticationException extends Exception
{
/**
* The guard instance.
*
* @var IlluminateContractsAuthGuard
*/
protected $guard;
/**
* Create a new authentication exception.
*
* @param IlluminateContractsAuthGuard|null $guard
*/
public function __construct($guard = null)
{
$this->guard = $guard;
parent::__construct('Unauthenticated.');
}
/**
* Get the guard instance.
*
* @return IlluminateContractsAuthGuard|null
*/
public function guard()
{
return $this->guard;
}
}