Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
cc2139ac
Commit
cc2139ac
authored
Feb 23, 2015
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaking a few things.
parent
f424b87a
Changes
16
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
0 additions
and
16 deletions
+0
-16
Inspire.php
app/Console/Commands/Inspire.php
+0
-1
Kernel.php
app/Console/Kernel.php
+0
-1
Handler.php
app/Exceptions/Handler.php
+0
-1
AuthController.php
app/Http/Controllers/Auth/AuthController.php
+0
-1
PasswordController.php
app/Http/Controllers/Auth/PasswordController.php
+0
-1
HomeController.php
app/Http/Controllers/HomeController.php
+0
-1
WelcomeController.php
app/Http/Controllers/WelcomeController.php
+0
-1
Kernel.php
app/Http/Kernel.php
+0
-1
Authenticate.php
app/Http/Middleware/Authenticate.php
+0
-1
RedirectIfAuthenticated.php
app/Http/Middleware/RedirectIfAuthenticated.php
+0
-1
VerifyCsrfToken.php
app/Http/Middleware/VerifyCsrfToken.php
+0
-1
2014_10_12_000000_create_users_table.php
database/migrations/2014_10_12_000000_create_users_table.php
+0
-1
2014_10_12_100000_create_password_resets_table.php
...ations/2014_10_12_100000_create_password_resets_table.php
+0
-1
DatabaseSeeder.php
database/seeds/DatabaseSeeder.php
+0
-1
ExampleTest.php
tests/ExampleTest.php
+0
-1
TestCase.php
tests/TestCase.php
+0
-1
No files found.
app/Console/Commands/Inspire.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Inspiring;
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Inspiring;
class
Inspire
extends
Command
class
Inspire
extends
Command
{
{
/**
/**
* The console command name.
* The console command name.
*
*
...
...
app/Console/Kernel.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class
Kernel
extends
ConsoleKernel
class
Kernel
extends
ConsoleKernel
{
{
/**
/**
* The Artisan commands provided by your application.
* The Artisan commands provided by your application.
*
*
...
...
app/Exceptions/Handler.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
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.
*
*
...
...
app/Http/Controllers/Auth/AuthController.php
View file @
cc2139ac
...
@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
...
@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class
AuthController
extends
Controller
class
AuthController
extends
Controller
{
{
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Registration & Login Controller
| Registration & Login Controller
...
...
app/Http/Controllers/Auth/PasswordController.php
View file @
cc2139ac
...
@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\ResetsPasswords;
...
@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\ResetsPasswords;
class
PasswordController
extends
Controller
class
PasswordController
extends
Controller
{
{
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Password Reset Controller
| Password Reset Controller
...
...
app/Http/Controllers/HomeController.php
View file @
cc2139ac
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
class
HomeController
extends
Controller
class
HomeController
extends
Controller
{
{
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Home Controller
| Home Controller
...
...
app/Http/Controllers/WelcomeController.php
View file @
cc2139ac
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
class
WelcomeController
extends
Controller
class
WelcomeController
extends
Controller
{
{
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Welcome Controller
| Welcome Controller
...
...
app/Http/Kernel.php
View file @
cc2139ac
...
@@ -4,7 +4,6 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel;
...
@@ -4,7 +4,6 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel;
class
Kernel
extends
HttpKernel
class
Kernel
extends
HttpKernel
{
{
/**
/**
* The application's global HTTP middleware stack.
* The application's global HTTP middleware stack.
*
*
...
...
app/Http/Middleware/Authenticate.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Contracts\Auth\Guard;
...
@@ -5,7 +5,6 @@ use Illuminate\Contracts\Auth\Guard;
class
Authenticate
class
Authenticate
{
{
/**
/**
* The Guard implementation.
* The Guard implementation.
*
*
...
...
app/Http/Middleware/RedirectIfAuthenticated.php
View file @
cc2139ac
...
@@ -6,7 +6,6 @@ use Illuminate\Http\RedirectResponse;
...
@@ -6,7 +6,6 @@ use Illuminate\Http\RedirectResponse;
class
RedirectIfAuthenticated
class
RedirectIfAuthenticated
{
{
/**
/**
* The Guard implementation.
* The Guard implementation.
*
*
...
...
app/Http/Middleware/VerifyCsrfToken.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class
VerifyCsrfToken
extends
BaseVerifier
class
VerifyCsrfToken
extends
BaseVerifier
{
{
/**
/**
* Handle an incoming request.
* Handle an incoming request.
*
*
...
...
database/migrations/2014_10_12_000000_create_users_table.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Database\Migrations\Migration;
...
@@ -5,7 +5,6 @@ use Illuminate\Database\Migrations\Migration;
class
CreateUsersTable
extends
Migration
class
CreateUsersTable
extends
Migration
{
{
/**
/**
* Run the migrations.
* Run the migrations.
*
*
...
...
database/migrations/2014_10_12_100000_create_password_resets_table.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Database\Migrations\Migration;
...
@@ -5,7 +5,6 @@ use Illuminate\Database\Migrations\Migration;
class
CreatePasswordResetsTable
extends
Migration
class
CreatePasswordResetsTable
extends
Migration
{
{
/**
/**
* Run the migrations.
* Run the migrations.
*
*
...
...
database/seeds/DatabaseSeeder.php
View file @
cc2139ac
...
@@ -5,7 +5,6 @@ use Illuminate\Database\Eloquent\Model;
...
@@ -5,7 +5,6 @@ use Illuminate\Database\Eloquent\Model;
class
DatabaseSeeder
extends
Seeder
class
DatabaseSeeder
extends
Seeder
{
{
/**
/**
* Run the database seeds.
* Run the database seeds.
*
*
...
...
tests/ExampleTest.php
View file @
cc2139ac
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
class
ExampleTest
extends
TestCase
class
ExampleTest
extends
TestCase
{
{
/**
/**
* A basic functional test example.
* A basic functional test example.
*
*
...
...
tests/TestCase.php
View file @
cc2139ac
...
@@ -2,7 +2,6 @@
...
@@ -2,7 +2,6 @@
class
TestCase
extends
Illuminate\Foundation\Testing\TestCase
class
TestCase
extends
Illuminate\Foundation\Testing\TestCase
{
{
/**
/**
* Creates the application.
* Creates the application.
*
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment