@@ -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 | * |
@@ -4,8 +4,7 @@ |
||
4 | 4 | |
5 | 5 | use Illuminate\Support\ServiceProvider; |
6 | 6 | |
7 | -class AppServiceProvider extends ServiceProvider |
|
8 | -{ |
|
7 | +class AppServiceProvider extends ServiceProvider { |
|
9 | 8 | /** |
10 | 9 | * Bootstrap any application services. |
11 | 10 | * |
@@ -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 | } |
@@ -7,8 +7,7 @@ |
||
7 | 7 | use Illuminate\Foundation\Auth\RegistersUsers; |
8 | 8 | use Illuminate\Support\Facades\Validator; |
9 | 9 | |
10 | -class RegisterController extends Controller |
|
11 | -{ |
|
10 | +class RegisterController extends Controller { |
|
12 | 11 | /* |
13 | 12 | |-------------------------------------------------------------------------- |
14 | 13 | | Register Controller |
@@ -5,8 +5,7 @@ |
||
5 | 5 | use App\Http\Controllers\Controller; |
6 | 6 | use Illuminate\Foundation\Auth\ResetsPasswords; |
7 | 7 | |
8 | -class ResetPasswordController extends Controller |
|
9 | -{ |
|
8 | +class ResetPasswordController extends Controller { |
|
10 | 9 | /* |
11 | 10 | |-------------------------------------------------------------------------- |
12 | 11 | | Password Reset Controller |