Tweak a few things.

This commit is contained in:
Taylor Otwell 2015-02-22 22:37:16 -06:00
parent cc2139ac91
commit 4c78958b5b
17 changed files with 16 additions and 1 deletions

View File

@ -5,6 +5,7 @@
class Inspire extends Command class Inspire extends Command
{ {
/** /**
* The console command name. * The console command name.
* *

View File

@ -5,6 +5,7 @@
class Kernel extends ConsoleKernel class Kernel extends ConsoleKernel
{ {
/** /**
* The Artisan commands provided by your application. * The Artisan commands provided by your application.
* *

View File

@ -5,6 +5,7 @@
class Handler extends ExceptionHandler class Handler extends ExceptionHandler
{ {
/** /**
* A list of the exception types that should not be reported. * A list of the exception types that should not be reported.
* *

View File

@ -7,6 +7,7 @@
class AuthController extends Controller class AuthController extends Controller
{ {
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Registration & Login Controller | Registration & Login Controller

View File

@ -7,6 +7,7 @@
class PasswordController extends Controller class PasswordController extends Controller
{ {
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------
| Password Reset Controller | Password Reset Controller

View File

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

View File

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

View File

@ -4,6 +4,7 @@
class Kernel extends HttpKernel class Kernel extends HttpKernel
{ {
/** /**
* The application's global HTTP middleware stack. * The application's global HTTP middleware stack.
* *

View File

@ -5,6 +5,7 @@
class Authenticate class Authenticate
{ {
/** /**
* The Guard implementation. * The Guard implementation.
* *

View File

@ -6,6 +6,7 @@
class RedirectIfAuthenticated class RedirectIfAuthenticated
{ {
/** /**
* The Guard implementation. * The Guard implementation.
* *

View File

@ -5,6 +5,7 @@
class VerifyCsrfToken extends BaseVerifier class VerifyCsrfToken extends BaseVerifier
{ {
/** /**
* Handle an incoming request. * Handle an incoming request.
* *

View File

@ -2,6 +2,5 @@
abstract class Job abstract class Job
{ {
// //
} }

View File

@ -5,6 +5,7 @@
class CreateUsersTable extends Migration class CreateUsersTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
* *

View File

@ -5,6 +5,7 @@
class CreatePasswordResetsTable extends Migration class CreatePasswordResetsTable extends Migration
{ {
/** /**
* Run the migrations. * Run the migrations.
* *

View File

@ -5,6 +5,7 @@
class DatabaseSeeder extends Seeder class DatabaseSeeder extends Seeder
{ {
/** /**
* Run the database seeds. * Run the database seeds.
* *

View File

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

View File

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