From 4c78958b5b7de2b80a1b7a2699a7218d3caf478f Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Sun, 22 Feb 2015 22:37:16 -0600 Subject: [PATCH] Tweak a few things. --- app/Console/Commands/Inspire.php | 1 + app/Console/Kernel.php | 1 + app/Exceptions/Handler.php | 1 + app/Http/Controllers/Auth/AuthController.php | 1 + app/Http/Controllers/Auth/PasswordController.php | 1 + app/Http/Controllers/HomeController.php | 1 + app/Http/Controllers/WelcomeController.php | 1 + app/Http/Kernel.php | 1 + app/Http/Middleware/Authenticate.php | 1 + app/Http/Middleware/RedirectIfAuthenticated.php | 1 + app/Http/Middleware/VerifyCsrfToken.php | 1 + app/Jobs/Job.php | 1 - database/migrations/2014_10_12_000000_create_users_table.php | 1 + .../2014_10_12_100000_create_password_resets_table.php | 1 + database/seeds/DatabaseSeeder.php | 1 + tests/ExampleTest.php | 1 + tests/TestCase.php | 1 + 17 files changed, 16 insertions(+), 1 deletion(-) diff --git a/app/Console/Commands/Inspire.php b/app/Console/Commands/Inspire.php index f29c1314..e2086a35 100644 --- a/app/Console/Commands/Inspire.php +++ b/app/Console/Commands/Inspire.php @@ -5,6 +5,7 @@ class Inspire extends Command { + /** * The console command name. * diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index ccf88039..12ee5ed0 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -5,6 +5,7 @@ class Kernel extends ConsoleKernel { + /** * The Artisan commands provided by your application. * diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index e055c601..b0e90da1 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -5,6 +5,7 @@ class Handler extends ExceptionHandler { + /** * A list of the exception types that should not be reported. * diff --git a/app/Http/Controllers/Auth/AuthController.php b/app/Http/Controllers/Auth/AuthController.php index 9869e6b2..b3bf6309 100644 --- a/app/Http/Controllers/Auth/AuthController.php +++ b/app/Http/Controllers/Auth/AuthController.php @@ -7,6 +7,7 @@ class AuthController extends Controller { + /* |-------------------------------------------------------------------------- | Registration & Login Controller diff --git a/app/Http/Controllers/Auth/PasswordController.php b/app/Http/Controllers/Auth/PasswordController.php index c5ccfae3..1dbad9c0 100644 --- a/app/Http/Controllers/Auth/PasswordController.php +++ b/app/Http/Controllers/Auth/PasswordController.php @@ -7,6 +7,7 @@ class PasswordController extends Controller { + /* |-------------------------------------------------------------------------- | Password Reset Controller diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 506b46cd..3af3784a 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -2,6 +2,7 @@ class HomeController extends Controller { + /* |-------------------------------------------------------------------------- | Home Controller diff --git a/app/Http/Controllers/WelcomeController.php b/app/Http/Controllers/WelcomeController.php index ee700fc2..c96af829 100644 --- a/app/Http/Controllers/WelcomeController.php +++ b/app/Http/Controllers/WelcomeController.php @@ -2,6 +2,7 @@ class WelcomeController extends Controller { + /* |-------------------------------------------------------------------------- | Welcome Controller diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index 8722b474..ccfaeddd 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -4,6 +4,7 @@ class Kernel extends HttpKernel { + /** * The application's global HTTP middleware stack. * diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index c6cd29c1..e7b6802f 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -5,6 +5,7 @@ class Authenticate { + /** * The Guard implementation. * diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index 73b314ea..f79b7ef3 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -6,6 +6,7 @@ class RedirectIfAuthenticated { + /** * The Guard implementation. * diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php index fc3d552d..cce9637f 100644 --- a/app/Http/Middleware/VerifyCsrfToken.php +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -5,6 +5,7 @@ class VerifyCsrfToken extends BaseVerifier { + /** * Handle an incoming request. * diff --git a/app/Jobs/Job.php b/app/Jobs/Job.php index caf0a26c..33fe4f05 100644 --- a/app/Jobs/Job.php +++ b/app/Jobs/Job.php @@ -2,6 +2,5 @@ abstract class Job { - // } diff --git a/database/migrations/2014_10_12_000000_create_users_table.php b/database/migrations/2014_10_12_000000_create_users_table.php index 65d3d083..8b764d04 100644 --- a/database/migrations/2014_10_12_000000_create_users_table.php +++ b/database/migrations/2014_10_12_000000_create_users_table.php @@ -5,6 +5,7 @@ class CreateUsersTable extends Migration { + /** * Run the migrations. * diff --git a/database/migrations/2014_10_12_100000_create_password_resets_table.php b/database/migrations/2014_10_12_100000_create_password_resets_table.php index 00057f9c..6dae21c2 100644 --- a/database/migrations/2014_10_12_100000_create_password_resets_table.php +++ b/database/migrations/2014_10_12_100000_create_password_resets_table.php @@ -5,6 +5,7 @@ class CreatePasswordResetsTable extends Migration { + /** * Run the migrations. * diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index d26eb82f..1764e033 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -5,6 +5,7 @@ class DatabaseSeeder extends Seeder { + /** * Run the database seeds. * diff --git a/tests/ExampleTest.php b/tests/ExampleTest.php index c78111bc..3dc3061f 100644 --- a/tests/ExampleTest.php +++ b/tests/ExampleTest.php @@ -2,6 +2,7 @@ class ExampleTest extends TestCase { + /** * A basic functional test example. * diff --git a/tests/TestCase.php b/tests/TestCase.php index 069f0b84..cfbb1529 100644 --- a/tests/TestCase.php +++ b/tests/TestCase.php @@ -2,6 +2,7 @@ class TestCase extends Illuminate\Foundation\Testing\TestCase { + /** * Creates the application. *