fix conflicts

This commit is contained in:
Taylor Otwell
2015-12-03 12:26:26 -06:00
6 changed files with 6 additions and 7 deletions

View File

@@ -13,7 +13,7 @@ class Kernel extends ConsoleKernel
* @var array
*/
protected $commands = [
\App\Console\Commands\Inspire::class,
Commands\Inspire::class,
];
/**

View File

@@ -17,7 +17,7 @@ class RedirectIfAuthenticated
public function handle($request, Closure $next)
{
if (Auth::check()) {
return redirect('/home');
return redirect('/');
}
return $next($request);