| 1 | <?php  | 
            ||
| 8 | class Authenticate  | 
            ||
| 9 | { | 
            ||
| 10 | /**  | 
            ||
| 11 | * The Guard implementation.  | 
            ||
| 12 | *  | 
            ||
| 13 | * @var Guard  | 
            ||
| 14 | */  | 
            ||
| 15 | protected $auth;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * Create a new filter instance.  | 
            ||
| 19 | *  | 
            ||
| 20 | * @param Guard $auth  | 
            ||
| 21 | */  | 
            ||
| 22 | public function __construct(Guard $auth)  | 
            ||
| 26 | |||
| 27 | /**  | 
            ||
| 28 | * Handle an incoming request.  | 
            ||
| 29 | *  | 
            ||
| 30 | * @param \Illuminate\Http\Request $request  | 
            ||
| 31 | * @param \Closure $next  | 
            ||
| 32 | *  | 
            ||
| 33 | * @return mixed  | 
            ||
| 34 | */  | 
            ||
| 35 | public function handle($request, Closure $next)  | 
            ||
| 47 | }  | 
            ||
| 48 |