Browse Source

Tweaking a few things.

Taylor Otwell 9 years ago
parent
commit
cc2139ac91

+ 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

@@ -6,7 +6,6 @@ use Illuminate\Http\RedirectResponse;
 
 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
database/migrations/2014_10_12_000000_create_users_table.php

@@ -5,7 +5,6 @@ use Illuminate\Database\Migrations\Migration;
 
 class CreateUsersTable extends Migration
 {
-
     /**
      * Run the migrations.
      *

+ 0 - 1
database/migrations/2014_10_12_100000_create_password_resets_table.php

@@ -5,7 +5,6 @@ use Illuminate\Database\Migrations\Migration;
 
 class CreatePasswordResetsTable extends Migration
 {
-
     /**
      * Run the migrations.
      *

+ 0 - 1
database/seeds/DatabaseSeeder.php

@@ -5,7 +5,6 @@ use Illuminate\Database\Eloquent\Model;
 
 class DatabaseSeeder extends Seeder
 {
-
     /**
      * Run the database seeds.
      *

+ 0 - 1
tests/ExampleTest.php

@@ -2,7 +2,6 @@
 
 class ExampleTest extends TestCase
 {
-
     /**
      * A basic functional test example.
      *

+ 0 - 1
tests/TestCase.php

@@ -2,7 +2,6 @@
 
 class TestCase extends Illuminate\Foundation\Testing\TestCase
 {
-
     /**
      * Creates the application.
      *