D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
tattooscyy
/
stage
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Auth
/
Filename :
AuthenticationException.php
back
Copy
<?php namespace Illuminate\Auth; use Exception; class AuthenticationException extends Exception { /** * All of the guards that were checked. * * @var array */ protected $guards; /** * Create a new authentication exception. * * @param string $message * @param array $guards * @return void */ public function __construct($message = 'Unauthenticated.', array $guards = []) { parent::__construct($message); $this->guards = $guards; } /** * Get the guards that were checked. * * @return array */ public function guards() { return $this->guards; } }