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 @@ use Illuminate\Foundation\Inspiring; 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 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel; 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 @@ use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler; 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 @@ use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers; 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 @@ use Illuminate\Foundation\Auth\ResetsPasswords; 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 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel; 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 @@ use Illuminate\Contracts\Auth\Guard; 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 @@ use Illuminate\Http\RedirectResponse; 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 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier; 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 @@ use Illuminate\Database\Migrations\Migration; 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 @@ use Illuminate\Database\Migrations\Migration; 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 @@ use Illuminate\Database\Eloquent\Model; 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. *