Commit f9c3754d authored by Taylor Otwell's avatar Taylor Otwell

More work on filters.

parent 34ee58ac
<?php namespace App\Http\Filters;
use Illuminate\Contracts\Routing\ResponseFactory;
class GuestFilter {
/**
* The authenticator implementation.
*
* @var Authenticator
*/
protected $auth;
/**
* The response factory implementation.
*
* @var ResponseFactory
*/
protected $response;
/**
* Create a new filter instance.
*
* @param Authenticator $auth
* @return void
*/
public function __construct(Authenticator $auth,
ResponseFacotry $response)
{
$this->auth = $auth;
$this->response = $response;
}
/**
* Run the request filter.
*
* @return mixed
*/
public function filter()
{
if ($this->auth->check())
{
return $this->response->redirectTo('/');
}
}
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment