Browse Source

Some spacing.

Taylor Otwell 9 years ago
parent
commit
8909e75552

+ 0 - 1
app/Console/Commands/Inspire.php

@@ -5,7 +5,6 @@ use Illuminate\Foundation\Inspiring;
 
 class Inspire extends Command
 {
-
     /**
      * The console command name.
      *

+ 0 - 1
app/Console/Kernel.php

@@ -5,7 +5,6 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
 
 class Kernel extends ConsoleKernel
 {
-
     /**
      * The Artisan commands provided by your application.
      *

+ 0 - 1
app/Exceptions/Handler.php

@@ -5,7 +5,6 @@ use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
 
 class Handler extends ExceptionHandler
 {
-
     /**
      * A list of the exception types that should not be reported.
      *

+ 0 - 1
app/Http/Controllers/Auth/AuthController.php

@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
 
 class AuthController extends Controller
 {
-
     /*
     |--------------------------------------------------------------------------
     | Registration & Login Controller

+ 0 - 1
app/Http/Controllers/Auth/PasswordController.php

@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\ResetsPasswords;
 
 class PasswordController extends Controller
 {
-
     /*
     |--------------------------------------------------------------------------
     | Password Reset Controller

+ 0 - 1
app/Http/Controllers/HomeController.php

@@ -2,7 +2,6 @@
 
 class HomeController extends Controller
 {
-
     /*
     |--------------------------------------------------------------------------
     | Home Controller

+ 0 - 1
app/Http/Controllers/WelcomeController.php

@@ -2,7 +2,6 @@
 
 class WelcomeController extends Controller
 {
-
     /*
     |--------------------------------------------------------------------------
     | Welcome Controller

+ 0 - 1
app/Http/Kernel.php

@@ -4,7 +4,6 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel;
 
 class Kernel extends HttpKernel
 {
-
     /**
      * The application's global HTTP middleware stack.
      *

+ 0 - 1
app/Http/Middleware/Authenticate.php

@@ -5,7 +5,6 @@ use Illuminate\Contracts\Auth\Guard;
 
 class Authenticate
 {
-
     /**
      * The Guard implementation.
      *

+ 0 - 1
app/Http/Middleware/RedirectIfAuthenticated.php

@@ -5,7 +5,6 @@ use Illuminate\Contracts\Auth\Guard;
 
 class RedirectIfAuthenticated
 {
-
     /**
      * The Guard implementation.
      *

+ 0 - 1
app/Http/Middleware/VerifyCsrfToken.php

@@ -5,7 +5,6 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
 
 class VerifyCsrfToken extends BaseVerifier
 {
-
     /**
      * Handle an incoming request.
      *

+ 0 - 1
app/Providers/AppServiceProvider.php

@@ -4,7 +4,6 @@ use Illuminate\Support\ServiceProvider;
 
 class AppServiceProvider extends ServiceProvider
 {
-
     /**
      * Bootstrap any application services.
      *

+ 0 - 1
app/Providers/EventServiceProvider.php

@@ -5,7 +5,6 @@ use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvi
 
 class EventServiceProvider extends ServiceProvider
 {
-
     /**
      * The event listener mappings for the application.
      *

+ 0 - 1
app/Providers/RouteServiceProvider.php

@@ -5,7 +5,6 @@ use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvi
 
 class RouteServiceProvider extends ServiceProvider
 {
-
     /**
      * This namespace is applied to the controller routes in your routes file.
      *

+ 0 - 1
app/User.php

@@ -8,7 +8,6 @@ use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
 
 class User extends Model implements AuthenticatableContract, CanResetPasswordContract
 {
-
     use Authenticatable, CanResetPassword;
 
     /**