Simplifying some filters.

This commit is contained in:
Taylor Otwell 2014-09-23 08:31:57 -05:00
parent 986c964c98
commit 076d86bf26
2 changed files with 6 additions and 23 deletions

View File

@ -1,6 +1,6 @@
<?php namespace App\Http\Filters;
use Illuminate\Contracts\Routing\ResponseFactory;
use Illuminate\Http\RedirectResponse;
class GuestFilter {
@ -11,24 +11,15 @@ class GuestFilter {
*/
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)
public function __construct(Authenticator $auth)
{
$this->auth = $auth;
$this->response = $response;
}
/**
@ -40,7 +31,7 @@ public function filter()
{
if ($this->auth->check())
{
return $this->response->redirectTo('/');
return new RedirectResponse(url('/'));
}
}

View File

@ -1,7 +1,7 @@
<?php namespace App\Http\Filters;
use Illuminate\Http\Response;
use Illuminate\Contracts\Foundation\Application;
use Illuminate\Contracts\Routing\ResponseFactory;
class MaintenanceFilter {
@ -12,23 +12,15 @@ class MaintenanceFilter {
*/
protected $app;
/**
* The response factory implementation.
*
* @var ResponseFactory
*/
protected $response;
/**
* Create a new filter instance.
*
* @param Application $app
* @return void
*/
public function __construct(Application $app, ResponseFactory $response)
public function __construct(Application $app)
{
$this->app = $app;
$this->response = $response;
}
/**
@ -40,7 +32,7 @@ public function filter()
{
if ($this->app->isDownForMaintenance())
{
return $this->response->make('Be right back!', 503);
return new Response('Be right back!', 503);
}
}