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
8909e755
Commit
8909e755
authored
Mar 02, 2015
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some spacing.
parent
c9c0380b
Changes
15
Show whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
0 additions
and
15 deletions
+0
-15
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
AppServiceProvider.php
app/Providers/AppServiceProvider.php
+0
-1
EventServiceProvider.php
app/Providers/EventServiceProvider.php
+0
-1
RouteServiceProvider.php
app/Providers/RouteServiceProvider.php
+0
-1
User.php
app/User.php
+0
-1
No files found.
app/Console/Commands/Inspire.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Inspiring;
class
Inspire
extends
Command
{
/**
* The console command name.
*
...
...
app/Console/Kernel.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
class
Kernel
extends
ConsoleKernel
{
/**
* The Artisan commands provided by your application.
*
...
...
app/Exceptions/Handler.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
class
Handler
extends
ExceptionHandler
{
/**
* A list of the exception types that should not be reported.
*
...
...
app/Http/Controllers/Auth/AuthController.php
View file @
8909e755
...
...
@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\AuthenticatesAndRegistersUsers;
class
AuthController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Registration & Login Controller
...
...
app/Http/Controllers/Auth/PasswordController.php
View file @
8909e755
...
...
@@ -7,7 +7,6 @@ use Illuminate\Foundation\Auth\ResetsPasswords;
class
PasswordController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Password Reset Controller
...
...
app/Http/Controllers/HomeController.php
View file @
8909e755
...
...
@@ -2,7 +2,6 @@
class
HomeController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Home Controller
...
...
app/Http/Controllers/WelcomeController.php
View file @
8909e755
...
...
@@ -2,7 +2,6 @@
class
WelcomeController
extends
Controller
{
/*
|--------------------------------------------------------------------------
| Welcome Controller
...
...
app/Http/Kernel.php
View file @
8909e755
...
...
@@ -4,7 +4,6 @@ use Illuminate\Foundation\Http\Kernel as HttpKernel;
class
Kernel
extends
HttpKernel
{
/**
* The application's global HTTP middleware stack.
*
...
...
app/Http/Middleware/Authenticate.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Contracts\Auth\Guard;
class
Authenticate
{
/**
* The Guard implementation.
*
...
...
app/Http/Middleware/RedirectIfAuthenticated.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Contracts\Auth\Guard;
class
RedirectIfAuthenticated
{
/**
* The Guard implementation.
*
...
...
app/Http/Middleware/VerifyCsrfToken.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as BaseVerifier;
class
VerifyCsrfToken
extends
BaseVerifier
{
/**
* Handle an incoming request.
*
...
...
app/Providers/AppServiceProvider.php
View file @
8909e755
...
...
@@ -4,7 +4,6 @@ use Illuminate\Support\ServiceProvider;
class
AppServiceProvider
extends
ServiceProvider
{
/**
* Bootstrap any application services.
*
...
...
app/Providers/EventServiceProvider.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvi
class
EventServiceProvider
extends
ServiceProvider
{
/**
* The event listener mappings for the application.
*
...
...
app/Providers/RouteServiceProvider.php
View file @
8909e755
...
...
@@ -5,7 +5,6 @@ use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvi
class
RouteServiceProvider
extends
ServiceProvider
{
/**
* This namespace is applied to the controller routes in your routes file.
*
...
...
app/User.php
View file @
8909e755
...
...
@@ -8,7 +8,6 @@ use Illuminate\Contracts\Auth\CanResetPassword as CanResetPasswordContract;
class
User
extends
Model
implements
AuthenticatableContract
,
CanResetPasswordContract
{
use
Authenticatable
,
CanResetPassword
;
/**
...
...
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