Commit 4c78958b authored by Taylor Otwell's avatar Taylor Otwell

Tweak a few things.

parent cc2139ac
......@@ -5,6 +5,7 @@ use Illuminate\Foundation\Inspiring;
class Inspire extends Command
{
/**
* The console command name.
*
......
......@@ -5,6 +5,7 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class Kernel extends ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
......
......@@ -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.
*
......
......@@ -7,6 +7,7 @@ use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class AuthController extends Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
......
......@@ -7,6 +7,7 @@ use Illuminate\Foundation\Auth\ResetsPasswords;
class PasswordController extends Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
......
......@@ -2,6 +2,7 @@
class HomeController extends Controller
{
/*
|--------------------------------------------------------------------------
| Home Controller
......
......@@ -2,6 +2,7 @@
class WelcomeController extends Controller
{
/*
|--------------------------------------------------------------------------
| Welcome Controller
......
......@@ -4,6 +4,7 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel;
class Kernel extends HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
......
......@@ -5,6 +5,7 @@ use Illuminate\Contracts\Auth\Guard;
class Authenticate
{
/**
* The Guard implementation.
*
......
......@@ -6,6 +6,7 @@ use Illuminate\Http\RedirectResponse;
class RedirectIfAuthenticated
{
/**
* The Guard implementation.
*
......
......@@ -5,6 +5,7 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class VerifyCsrfToken extends BaseVerifier
{
/**
* Handle an incoming request.
*
......
......@@ -2,6 +2,5 @@
abstract class Job
{
//
}
......@@ -5,6 +5,7 @@ use Illuminate\Database\Migrations\Migration;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
......
......@@ -5,6 +5,7 @@ use Illuminate\Database\Migrations\Migration;
class CreatePasswordResetsTable extends Migration
{
/**
* Run the migrations.
*
......
......@@ -5,6 +5,7 @@ use Illuminate\Database\Eloquent\Model;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
......
......@@ -2,6 +2,7 @@
class ExampleTest extends TestCase
{
/**
* A basic functional test example.
*
......
......@@ -2,6 +2,7 @@
class TestCase extends Illuminate\Foundation\Testing\TestCase
{
/**
* Creates the application.
*
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment