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
9b6d5f42
Commit
9b6d5f42
authored
Jun 01, 2015
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3399 from GrahamForks/cs
CS
parents
f871b7d0
bf3785d0
Changes
27
Show whitespace changes
Inline
Side-by-side
Showing
27 changed files
with
168 additions
and
134 deletions
+168
-134
Inspire.php
app/Console/Commands/Inspire.php
+3
-1
Kernel.php
app/Console/Kernel.php
+3
-1
Event.php
app/Events/Event.php
+3
-1
Handler.php
app/Exceptions/Handler.php
+4
-2
AuthController.php
app/Http/Controllers/Auth/AuthController.php
+3
-1
PasswordController.php
app/Http/Controllers/Auth/PasswordController.php
+3
-1
Controller.php
app/Http/Controllers/Controller.php
+3
-1
Kernel.php
app/Http/Kernel.php
+3
-1
Authenticate.php
app/Http/Middleware/Authenticate.php
+3
-1
RedirectIfAuthenticated.php
app/Http/Middleware/RedirectIfAuthenticated.php
+3
-1
VerifyCsrfToken.php
app/Http/Middleware/VerifyCsrfToken.php
+3
-1
Request.php
app/Http/Requests/Request.php
+3
-1
Job.php
app/Jobs/Job.php
+3
-3
AppServiceProvider.php
app/Providers/AppServiceProvider.php
+3
-1
EventServiceProvider.php
app/Providers/EventServiceProvider.php
+3
-1
RouteServiceProvider.php
app/Providers/RouteServiceProvider.php
+3
-1
User.php
app/User.php
+3
-1
composer.json
composer.json
+46
-46
cache.php
config/cache.php
+3
-3
database.php
config/database.php
+1
-1
filesystems.php
config/filesystems.php
+1
-1
view.php
config/view.php
+1
-1
DatabaseSeeder.php
database/seeds/DatabaseSeeder.php
+1
-1
index.php
public/index.php
+1
-0
passwords.php
resources/lang/en/passwords.php
+5
-5
validation.php
resources/lang/en/validation.php
+56
-56
server.php
server.php
+1
-0
No files found.
app/Console/Commands/Inspire.php
View file @
9b6d5f42
<?php
namespace
App\Console\Commands
;
<?php
namespace
App\Console\Commands
;
use
Illuminate\Console\Command
;
use
Illuminate\Console\Command
;
use
Illuminate\Foundation\Inspiring
;
use
Illuminate\Foundation\Inspiring
;
...
...
app/Console/Kernel.php
View file @
9b6d5f42
<?php
namespace
App\Console
;
<?php
namespace
App\Console
;
use
Illuminate\Console\Scheduling\Schedule
;
use
Illuminate\Console\Scheduling\Schedule
;
use
Illuminate\Foundation\Console\Kernel
as
ConsoleKernel
;
use
Illuminate\Foundation\Console\Kernel
as
ConsoleKernel
;
...
...
app/Events/Event.php
View file @
9b6d5f42
<?php
namespace
App\Events
;
<?php
namespace
App\Events
;
abstract
class
Event
abstract
class
Event
{
{
...
...
app/Exceptions/Handler.php
View file @
9b6d5f42
<?php
namespace
App\Exceptions
;
<?php
namespace
App\Exceptions
;
use
Exception
;
use
Exception
;
use
Illuminate\Foundation\Exceptions\Handler
as
ExceptionHandler
;
use
Illuminate\Foundation\Exceptions\Handler
as
ExceptionHandler
;
...
@@ -11,7 +13,7 @@ class Handler extends ExceptionHandler
...
@@ -11,7 +13,7 @@ class Handler extends ExceptionHandler
* @var array
* @var array
*/
*/
protected
$dontReport
=
[
protected
$dontReport
=
[
'Symfony\Component\HttpKernel\Exception\HttpException'
'Symfony\Component\HttpKernel\Exception\HttpException'
,
];
];
/**
/**
...
...
app/Http/Controllers/Auth/AuthController.php
View file @
9b6d5f42
<?php
namespace
App\Http\Controllers\Auth
;
<?php
namespace
App\Http\Controllers\Auth
;
use
App\User
;
use
App\User
;
use
Validator
;
use
Validator
;
...
...
app/Http/Controllers/Auth/PasswordController.php
View file @
9b6d5f42
<?php
namespace
App\Http\Controllers\Auth
;
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\ResetsPasswords
;
use
Illuminate\Foundation\Auth\ResetsPasswords
;
...
...
app/Http/Controllers/Controller.php
View file @
9b6d5f42
<?php
namespace
App\Http\Controllers
;
<?php
namespace
App\Http\Controllers
;
use
Illuminate\Foundation\Bus\DispatchesJobs
;
use
Illuminate\Foundation\Bus\DispatchesJobs
;
use
Illuminate\Routing\Controller
as
BaseController
;
use
Illuminate\Routing\Controller
as
BaseController
;
...
...
app/Http/Kernel.php
View file @
9b6d5f42
<?php
namespace
App\Http
;
<?php
namespace
App\Http
;
use
Illuminate\Foundation\Http\Kernel
as
HttpKernel
;
use
Illuminate\Foundation\Http\Kernel
as
HttpKernel
;
...
...
app/Http/Middleware/Authenticate.php
View file @
9b6d5f42
<?php
namespace
App\Http\Middleware
;
<?php
namespace
App\Http\Middleware
;
use
Closure
;
use
Closure
;
use
Illuminate\Contracts\Auth\Guard
;
use
Illuminate\Contracts\Auth\Guard
;
...
...
app/Http/Middleware/RedirectIfAuthenticated.php
View file @
9b6d5f42
<?php
namespace
App\Http\Middleware
;
<?php
namespace
App\Http\Middleware
;
use
Closure
;
use
Closure
;
use
Illuminate\Contracts\Auth\Guard
;
use
Illuminate\Contracts\Auth\Guard
;
...
...
app/Http/Middleware/VerifyCsrfToken.php
View file @
9b6d5f42
<?php
namespace
App\Http\Middleware
;
<?php
namespace
App\Http\Middleware
;
use
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken
as
BaseVerifier
;
use
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken
as
BaseVerifier
;
...
...
app/Http/Requests/Request.php
View file @
9b6d5f42
<?php
namespace
App\Http\Requests
;
<?php
namespace
App\Http\Requests
;
use
Illuminate\Foundation\Http\FormRequest
;
use
Illuminate\Foundation\Http\FormRequest
;
...
...
app/Jobs/Job.php
View file @
9b6d5f42
<?php
namespace
App\Jobs
;
<?php
namespace
App\Jobs
;
use
Illuminate\Bus\Queueable
;
use
Illuminate\Bus\Queueable
;
abstract
class
Job
abstract
class
Job
{
{
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
| Queueable Jobs
| Queueable Jobs
...
@@ -17,5 +18,4 @@ abstract class Job
...
@@ -17,5 +18,4 @@ abstract class Job
*/
*/
use
Queueable
;
use
Queueable
;
}
}
app/Providers/AppServiceProvider.php
View file @
9b6d5f42
<?php
namespace
App\Providers
;
<?php
namespace
App\Providers
;
use
Illuminate\Support\ServiceProvider
;
use
Illuminate\Support\ServiceProvider
;
...
...
app/Providers/EventServiceProvider.php
View file @
9b6d5f42
<?php
namespace
App\Providers
;
<?php
namespace
App\Providers
;
use
Illuminate\Contracts\Events\Dispatcher
as
DispatcherContract
;
use
Illuminate\Contracts\Events\Dispatcher
as
DispatcherContract
;
use
Illuminate\Foundation\Support\Providers\EventServiceProvider
as
ServiceProvider
;
use
Illuminate\Foundation\Support\Providers\EventServiceProvider
as
ServiceProvider
;
...
...
app/Providers/RouteServiceProvider.php
View file @
9b6d5f42
<?php
namespace
App\Providers
;
<?php
namespace
App\Providers
;
use
Illuminate\Routing\Router
;
use
Illuminate\Routing\Router
;
use
Illuminate\Foundation\Support\Providers\RouteServiceProvider
as
ServiceProvider
;
use
Illuminate\Foundation\Support\Providers\RouteServiceProvider
as
ServiceProvider
;
...
...
app/User.php
View file @
9b6d5f42
<?php
namespace
App
;
<?php
namespace
App
;
use
Illuminate\Auth\Authenticatable
;
use
Illuminate\Auth\Authenticatable
;
use
Illuminate\Database\Eloquent\Model
;
use
Illuminate\Database\Eloquent\Model
;
...
...
composer.json
View file @
9b6d5f42
config/cache.php
View file @
9b6d5f42
...
@@ -29,11 +29,11 @@ return [
...
@@ -29,11 +29,11 @@ return [
'stores'
=>
[
'stores'
=>
[
'apc'
=>
[
'apc'
=>
[
'driver'
=>
'apc'
'driver'
=>
'apc'
,
],
],
'array'
=>
[
'array'
=>
[
'driver'
=>
'array'
'driver'
=>
'array'
,
],
],
'database'
=>
[
'database'
=>
[
...
@@ -51,7 +51,7 @@ return [
...
@@ -51,7 +51,7 @@ return [
'driver'
=>
'memcached'
,
'driver'
=>
'memcached'
,
'servers'
=>
[
'servers'
=>
[
[
[
'host'
=>
'127.0.0.1'
,
'port'
=>
11211
,
'weight'
=>
100
'host'
=>
'127.0.0.1'
,
'port'
=>
11211
,
'weight'
=>
100
,
],
],
],
],
],
],
...
...
config/database.php
View file @
9b6d5f42
...
@@ -26,7 +26,7 @@ return [
...
@@ -26,7 +26,7 @@ return [
|
|
*/
*/
'default'
=>
env
(
'DB_CONNECTION'
,
'mysql'
),
'default'
=>
env
(
'DB_CONNECTION'
,
'mysql'
),
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
config/filesystems.php
View file @
9b6d5f42
...
@@ -77,7 +77,7 @@ return [
...
@@ -77,7 +77,7 @@ return [
'container'
=>
'your-container'
,
'container'
=>
'your-container'
,
'endpoint'
=>
'https://identity.api.rackspacecloud.com/v2.0/'
,
'endpoint'
=>
'https://identity.api.rackspacecloud.com/v2.0/'
,
'region'
=>
'IAD'
,
'region'
=>
'IAD'
,
'url_type'
=>
'publicURL'
'url_type'
=>
'publicURL'
,
],
],
],
],
...
...
config/view.php
View file @
9b6d5f42
...
@@ -14,7 +14,7 @@ return [
...
@@ -14,7 +14,7 @@ return [
*/
*/
'paths'
=>
[
'paths'
=>
[
realpath
(
base_path
(
'resources/views'
))
realpath
(
base_path
(
'resources/views'
))
,
],
],
/*
/*
...
...
database/seeds/DatabaseSeeder.php
View file @
9b6d5f42
public/index.php
View file @
9b6d5f42
<?php
<?php
/**
/**
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans
*
*
...
...
resources/lang/en/passwords.php
View file @
9b6d5f42
...
@@ -13,10 +13,10 @@ return [
...
@@ -13,10 +13,10 @@ return [
|
|
*/
*/
"password"
=>
"Passwords must be at least six characters and match the confirmation."
,
'password'
=>
'Passwords must be at least six characters and match the confirmation.'
,
"user"
=>
"We can't find a user with that e-mail address."
,
'user'
=>
"We can't find a user with that e-mail address."
,
"token"
=>
"This password reset token is invalid."
,
'token'
=>
'This password reset token is invalid.'
,
"sent"
=>
"We have e-mailed your password reset link!"
,
'sent'
=>
'We have e-mailed your password reset link!'
,
"reset"
=>
"Your password has been reset!"
,
'reset'
=>
'Your password has been reset!'
,
];
];
resources/lang/en/validation.php
View file @
9b6d5f42
...
@@ -13,66 +13,66 @@ return [
...
@@ -13,66 +13,66 @@ return [
|
|
*/
*/
"accepted"
=>
"The :attribute must be accepted."
,
'accepted'
=>
'The :attribute must be accepted.'
,
"active_url"
=>
"The :attribute is not a valid URL."
,
'active_url'
=>
'The :attribute is not a valid URL.'
,
"after"
=>
"The :attribute must be a date after :date."
,
'after'
=>
'The :attribute must be a date after :date.'
,
"alpha"
=>
"The :attribute may only contain letters."
,
'alpha'
=>
'The :attribute may only contain letters.'
,
"alpha_dash"
=>
"The :attribute may only contain letters, numbers, and dashes."
,
'alpha_dash'
=>
'The :attribute may only contain letters, numbers, and dashes.'
,
"alpha_num"
=>
"The :attribute may only contain letters and numbers."
,
'alpha_num'
=>
'The :attribute may only contain letters and numbers.'
,
"array"
=>
"The :attribute must be an array."
,
'array'
=>
'The :attribute must be an array.'
,
"before"
=>
"The :attribute must be a date before :date."
,
'before'
=>
'The :attribute must be a date before :date.'
,
"between"
=>
[
'between'
=>
[
"numeric"
=>
"The :attribute must be between :min and :max."
,
'numeric'
=>
'The :attribute must be between :min and :max.'
,
"file"
=>
"The :attribute must be between :min and :max kilobytes."
,
'file'
=>
'The :attribute must be between :min and :max kilobytes.'
,
"string"
=>
"The :attribute must be between :min and :max characters."
,
'string'
=>
'The :attribute must be between :min and :max characters.'
,
"array"
=>
"The :attribute must have between :min and :max items."
,
'array'
=>
'The :attribute must have between :min and :max items.'
,
],
],
"boolean"
=>
"The :attribute field must be true or false."
,
'boolean'
=>
'The :attribute field must be true or false.'
,
"confirmed"
=>
"The :attribute confirmation does not match."
,
'confirmed'
=>
'The :attribute confirmation does not match.'
,
"date"
=>
"The :attribute is not a valid date."
,
'date'
=>
'The :attribute is not a valid date.'
,
"date_format"
=>
"The :attribute does not match the format :format."
,
'date_format'
=>
'The :attribute does not match the format :format.'
,
"different"
=>
"The :attribute and :other must be different."
,
'different'
=>
'The :attribute and :other must be different.'
,
"digits"
=>
"The :attribute must be :digits digits."
,
'digits'
=>
'The :attribute must be :digits digits.'
,
"digits_between"
=>
"The :attribute must be between :min and :max digits."
,
'digits_between'
=>
'The :attribute must be between :min and :max digits.'
,
"email"
=>
"The :attribute must be a valid email address."
,
'email'
=>
'The :attribute must be a valid email address.'
,
"filled"
=>
"The :attribute field is required."
,
'filled'
=>
'The :attribute field is required.'
,
"exists"
=>
"The selected :attribute is invalid."
,
'exists'
=>
'The selected :attribute is invalid.'
,
"image"
=>
"The :attribute must be an image."
,
'image'
=>
'The :attribute must be an image.'
,
"in"
=>
"The selected :attribute is invalid."
,
'in'
=>
'The selected :attribute is invalid.'
,
"integer"
=>
"The :attribute must be an integer."
,
'integer'
=>
'The :attribute must be an integer.'
,
"ip"
=>
"The :attribute must be a valid IP address."
,
'ip'
=>
'The :attribute must be a valid IP address.'
,
"max"
=>
[
'max'
=>
[
"numeric"
=>
"The :attribute may not be greater than :max."
,
'numeric'
=>
'The :attribute may not be greater than :max.'
,
"file"
=>
"The :attribute may not be greater than :max kilobytes."
,
'file'
=>
'The :attribute may not be greater than :max kilobytes.'
,
"string"
=>
"The :attribute may not be greater than :max characters."
,
'string'
=>
'The :attribute may not be greater than :max characters.'
,
"array"
=>
"The :attribute may not have more than :max items."
,
'array'
=>
'The :attribute may not have more than :max items.'
,
],
],
"mimes"
=>
"The :attribute must be a file of type: :values."
,
'mimes'
=>
'The :attribute must be a file of type: :values.'
,
"min"
=>
[
'min'
=>
[
"numeric"
=>
"The :attribute must be at least :min."
,
'numeric'
=>
'The :attribute must be at least :min.'
,
"file"
=>
"The :attribute must be at least :min kilobytes."
,
'file'
=>
'The :attribute must be at least :min kilobytes.'
,
"string"
=>
"The :attribute must be at least :min characters."
,
'string'
=>
'The :attribute must be at least :min characters.'
,
"array"
=>
"The :attribute must have at least :min items."
,
'array'
=>
'The :attribute must have at least :min items.'
,
],
],
"not_in"
=>
"The selected :attribute is invalid."
,
'not_in'
=>
'The selected :attribute is invalid.'
,
"numeric"
=>
"The :attribute must be a number."
,
'numeric'
=>
'The :attribute must be a number.'
,
"regex"
=>
"The :attribute format is invalid."
,
'regex'
=>
'The :attribute format is invalid.'
,
"required"
=>
"The :attribute field is required."
,
'required'
=>
'The :attribute field is required.'
,
"required_if"
=>
"The :attribute field is required when :other is :value."
,
'required_if'
=>
'The :attribute field is required when :other is :value.'
,
"required_with"
=>
"The :attribute field is required when :values is present."
,
'required_with'
=>
'The :attribute field is required when :values is present.'
,
"required_with_all"
=>
"The :attribute field is required when :values is present."
,
'required_with_all'
=>
'The :attribute field is required when :values is present.'
,
"required_without"
=>
"The :attribute field is required when :values is not present."
,
'required_without'
=>
'The :attribute field is required when :values is not present.'
,
"required_without_all"
=>
"The :attribute field is required when none of :values are present."
,
'required_without_all'
=>
'The :attribute field is required when none of :values are present.'
,
"same"
=>
"The :attribute and :other must match."
,
'same'
=>
'The :attribute and :other must match.'
,
"size"
=>
[
'size'
=>
[
"numeric"
=>
"The :attribute must be :size."
,
'numeric'
=>
'The :attribute must be :size.'
,
"file"
=>
"The :attribute must be :size kilobytes."
,
'file'
=>
'The :attribute must be :size kilobytes.'
,
"string"
=>
"The :attribute must be :size characters."
,
'string'
=>
'The :attribute must be :size characters.'
,
"array"
=>
"The :attribute must contain :size items."
,
'array'
=>
'The :attribute must contain :size items.'
,
],
],
"timezone"
=>
"The :attribute must be a valid zone."
,
'timezone'
=>
'The :attribute must be a valid zone.'
,
"unique"
=>
"The :attribute has already been taken."
,
'unique'
=>
'The :attribute has already been taken.'
,
"url"
=>
"The :attribute format is invalid."
,
'url'
=>
'The :attribute format is invalid.'
,
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
server.php
View file @
9b6d5f42
<?php
<?php
/**
/**
* Laravel - A PHP Framework For Web Artisans
* Laravel - A PHP Framework For Web Artisans
*
*
...
...
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