Skip to content

Commit

Permalink
Master synchronization
Browse files Browse the repository at this point in the history
  • Loading branch information
bestmomo committed Jan 6, 2015
1 parent 999d54b commit 234244f
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 12 deletions.
3 changes: 1 addition & 2 deletions app/Http/Middleware/App.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?php namespace App\Http\Middleware;

use Closure, Session, Auth;
use Illuminate\Contracts\Routing\Middleware;

class App implements Middleware {
class App {

/**
* The availables languages.
Expand Down
3 changes: 1 addition & 2 deletions app/Http/Middleware/Authenticate.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@

use Closure;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Contracts\Routing\Middleware;

class Authenticate implements Middleware {
class Authenticate {

/**
* The Guard implementation.
Expand Down
3 changes: 1 addition & 2 deletions app/Http/Middleware/IsAdmin.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?php namespace App\Http\Middleware;

use Closure;
use Illuminate\Contracts\Routing\Middleware;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Http\RedirectResponse;

class IsAdmin implements Middleware {
class IsAdmin {

/**
* The Guard implementation.
Expand Down
3 changes: 1 addition & 2 deletions app/Http/Middleware/IsRedactor.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
<?php namespace App\Http\Middleware;

use Closure;
use Illuminate\Contracts\Routing\Middleware;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Http\RedirectResponse;

class IsRedactor implements Middleware {
class IsRedactor {

/**
* The Guard implementation.
Expand Down
3 changes: 1 addition & 2 deletions app/Http/Middleware/RedirectIfAuthenticated.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
use Closure;
use Illuminate\Contracts\Auth\Guard;
use Illuminate\Http\RedirectResponse;
use Illuminate\Contracts\Routing\Middleware;

class RedirectIfAuthenticated implements Middleware {
class RedirectIfAuthenticated {

/**
* The Guard implementation.
Expand Down
4 changes: 2 additions & 2 deletions config/view.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
|
*/

'paths' => [base_path('resources/templates')],
'paths' => [base_path('resources/views')],

/*
|--------------------------------------------------------------------------
Expand All @@ -26,6 +26,6 @@
|
*/

'compiled' => storage_path().'/framework/templates',
'compiled' => storage_path().'/framework/views',

];
File renamed without changes.

0 comments on commit 234244f

Please sign in to comment.