@@ -6,7 +6,7 @@ |
||
6 | 6 | * @author Taylor Otwell <[email protected]> |
7 | 7 | */ |
8 | 8 | $uri = urldecode( |
9 | - parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) |
|
9 | + parse_url($_SERVER[ 'REQUEST_URI' ], PHP_URL_PATH) |
|
10 | 10 | ); |
11 | 11 | |
12 | 12 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; |
6 | 6 | use Illuminate\Support\Facades\Route; |
7 | 7 | |
8 | -class RouteServiceProvider extends ServiceProvider |
|
9 | -{ |
|
8 | +class RouteServiceProvider extends ServiceProvider { |
|
10 | 9 | /** |
11 | 10 | * This namespace is applied to your controller routes. |
12 | 11 | * |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Support\Facades\Broadcast; |
6 | 6 | use Illuminate\Support\ServiceProvider; |
7 | 7 | |
8 | -class BroadcastServiceProvider extends ServiceProvider |
|
9 | -{ |
|
8 | +class BroadcastServiceProvider extends ServiceProvider { |
|
10 | 9 | /** |
11 | 10 | * Bootstrap any application services. |
12 | 11 | * |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; |
6 | 6 | use Illuminate\Support\Facades\Event; |
7 | 7 | |
8 | -class EventServiceProvider extends ServiceProvider |
|
9 | -{ |
|
8 | +class EventServiceProvider extends ServiceProvider { |
|
10 | 9 | /** |
11 | 10 | * The event listener mappings for the application. |
12 | 11 | * |
@@ -4,8 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; |
6 | 6 | |
7 | -class AuthServiceProvider extends ServiceProvider |
|
8 | -{ |
|
7 | +class AuthServiceProvider extends ServiceProvider { |
|
9 | 8 | /** |
10 | 9 | * The policy mappings for the application. |
11 | 10 | * |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use Illuminate\Foundation\Auth\User as Authenticatable; |
6 | 6 | use Illuminate\Notifications\Notifiable; |
7 | 7 | |
8 | -class User extends Authenticatable |
|
9 | -{ |
|
8 | +class User extends Authenticatable { |
|
10 | 9 | use Notifiable; |
11 | 10 | |
12 | 11 | /** |
@@ -7,7 +7,6 @@ |
||
7 | 7 | use Illuminate\Foundation\Validation\ValidatesRequests; |
8 | 8 | use Illuminate\Routing\Controller as BaseController; |
9 | 9 | |
10 | -class Controller extends BaseController |
|
11 | -{ |
|
10 | +class Controller extends BaseController { |
|
12 | 11 | use AuthorizesRequests, DispatchesJobs, ValidatesRequests; |
13 | 12 | } |
@@ -16,7 +16,7 @@ |
||
16 | 16 | * |
17 | 17 | * @return mixed |
18 | 18 | */ |
19 | - public function handle($request, Closure $next, $guard = null) |
|
19 | + public function handle ($request, Closure $next, $guard = null) |
|
20 | 20 | { |
21 | 21 | if (Auth::guard($guard)->check()) { |
22 | 22 | return redirect('/home'); |
@@ -4,8 +4,7 @@ |
||
4 | 4 | use Illuminate\Database\Schema\Blueprint; |
5 | 5 | use Illuminate\Support\Facades\Schema; |
6 | 6 | |
7 | -class CreatePasswordResetsTable extends Migration |
|
8 | -{ |
|
7 | +class CreatePasswordResetsTable extends Migration { |
|
9 | 8 | /** |
10 | 9 | * Run the migrations. |
11 | 10 | * |