Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
U
UserAdminV2
Overview
Overview
Details
Activity
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
庄欣
UserAdminV2
Commits
bf3785d0
Commit
bf3785d0
authored
9 years ago
by
Graham Campbell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Additional cs fixes
Signed-off-by: Graham Campbell <graham@cachethq.io>
parent
060938bc
Hide whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
121 additions
and
85 deletions
+121
-85
app/Console/Commands/Inspire.php
+3
-1
app/Console/Kernel.php
+3
-1
app/Events/Event.php
+3
-1
app/Exceptions/Handler.php
+4
-2
app/Http/Controllers/Auth/AuthController.php
+3
-1
app/Http/Controllers/Auth/PasswordController.php
+3
-1
app/Http/Controllers/Controller.php
+3
-1
app/Http/Kernel.php
+3
-1
app/Http/Middleware/Authenticate.php
+3
-1
app/Http/Middleware/RedirectIfAuthenticated.php
+3
-1
app/Http/Middleware/VerifyCsrfToken.php
+3
-1
app/Http/Requests/Request.php
+3
-1
app/Jobs/Job.php
+3
-1
app/Providers/AppServiceProvider.php
+3
-1
app/Providers/EventServiceProvider.php
+3
-1
app/Providers/RouteServiceProvider.php
+3
-1
app/User.php
+3
-1
config/cache.php
+3
-3
config/filesystems.php
+1
-1
config/view.php
+1
-1
database/seeds/DatabaseSeeder.php
+1
-1
public/index.php
+1
-0
resources/lang/en/passwords.php
+5
-5
resources/lang/en/validation.php
+56
-56
server.php
+1
-0
No files found.
app/Console/Commands/Inspire.php
View file @
bf3785d0
<?php
namespace
App\Console\Commands
;
<?php
namespace
App\Console\Commands
;
use
Illuminate\Console\Command
;
use
Illuminate\Foundation\Inspiring
;
...
...
This diff is collapsed.
Click to expand it.
app/Console/Kernel.php
View file @
bf3785d0
<?php
namespace
App\Console
;
<?php
namespace
App\Console
;
use
Illuminate\Console\Scheduling\Schedule
;
use
Illuminate\Foundation\Console\Kernel
as
ConsoleKernel
;
...
...
This diff is collapsed.
Click to expand it.
app/Events/Event.php
View file @
bf3785d0
<?php
namespace
App\Events
;
<?php
namespace
App\Events
;
abstract
class
Event
{
...
...
This diff is collapsed.
Click to expand it.
app/Exceptions/Handler.php
View file @
bf3785d0
<?php
namespace
App\Exceptions
;
<?php
namespace
App\Exceptions
;
use
Exception
;
use
Illuminate\Foundation\Exceptions\Handler
as
ExceptionHandler
;
...
...
@@ -11,7 +13,7 @@ class Handler extends ExceptionHandler
* @var array
*/
protected
$dontReport
=
[
'Symfony\Component\HttpKernel\Exception\HttpException'
'Symfony\Component\HttpKernel\Exception\HttpException'
,
];
/**
...
...
This diff is collapsed.
Click to expand it.
app/Http/Controllers/Auth/AuthController.php
View file @
bf3785d0
<?php
namespace
App\Http\Controllers\Auth
;
<?php
namespace
App\Http\Controllers\Auth
;
use
App\User
;
use
Validator
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Controllers/Auth/PasswordController.php
View file @
bf3785d0
<?php
namespace
App\Http\Controllers\Auth
;
<?php
namespace
App\Http\Controllers\Auth
;
use
App\Http\Controllers\Controller
;
use
Illuminate\Foundation\Auth\ResetsPasswords
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Controllers/Controller.php
View file @
bf3785d0
<?php
namespace
App\Http\Controllers
;
<?php
namespace
App\Http\Controllers
;
use
Illuminate\Foundation\Bus\DispatchesJobs
;
use
Illuminate\Routing\Controller
as
BaseController
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Kernel.php
View file @
bf3785d0
<?php
namespace
App\Http
;
<?php
namespace
App\Http
;
use
Illuminate\Foundation\Http\Kernel
as
HttpKernel
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Middleware/Authenticate.php
View file @
bf3785d0
<?php
namespace
App\Http\Middleware
;
<?php
namespace
App\Http\Middleware
;
use
Closure
;
use
Illuminate\Contracts\Auth\Guard
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Middleware/RedirectIfAuthenticated.php
View file @
bf3785d0
<?php
namespace
App\Http\Middleware
;
<?php
namespace
App\Http\Middleware
;
use
Closure
;
use
Illuminate\Contracts\Auth\Guard
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Middleware/VerifyCsrfToken.php
View file @
bf3785d0
<?php
namespace
App\Http\Middleware
;
<?php
namespace
App\Http\Middleware
;
use
Illuminate\Foundation\Http\Middleware\VerifyCsrfToken
as
BaseVerifier
;
...
...
This diff is collapsed.
Click to expand it.
app/Http/Requests/Request.php
View file @
bf3785d0
<?php
namespace
App\Http\Requests
;
<?php
namespace
App\Http\Requests
;
use
Illuminate\Foundation\Http\FormRequest
;
...
...
This diff is collapsed.
Click to expand it.
app/Jobs/Job.php
View file @
bf3785d0
<?php
namespace
App\Jobs
;
<?php
namespace
App\Jobs
;
use
Illuminate\Bus\Queueable
;
...
...
This diff is collapsed.
Click to expand it.
app/Providers/AppServiceProvider.php
View file @
bf3785d0
<?php
namespace
App\Providers
;
<?php
namespace
App\Providers
;
use
Illuminate\Support\ServiceProvider
;
...
...
This diff is collapsed.
Click to expand it.
app/Providers/EventServiceProvider.php
View file @
bf3785d0
<?php
namespace
App\Providers
;
<?php
namespace
App\Providers
;
use
Illuminate\Contracts\Events\Dispatcher
as
DispatcherContract
;
use
Illuminate\Foundation\Support\Providers\EventServiceProvider
as
ServiceProvider
;
...
...
This diff is collapsed.
Click to expand it.
app/Providers/RouteServiceProvider.php
View file @
bf3785d0
<?php
namespace
App\Providers
;
<?php
namespace
App\Providers
;
use
Illuminate\Routing\Router
;
use
Illuminate\Foundation\Support\Providers\RouteServiceProvider
as
ServiceProvider
;
...
...
This diff is collapsed.
Click to expand it.
app/User.php
View file @
bf3785d0
<?php
namespace
App
;
<?php
namespace
App
;
use
Illuminate\Auth\Authenticatable
;
use
Illuminate\Database\Eloquent\Model
;
...
...
This diff is collapsed.
Click to expand it.
config/cache.php
View file @
bf3785d0
...
...
@@ -29,11 +29,11 @@ return [
'stores'
=>
[
'apc'
=>
[
'driver'
=>
'apc'
'driver'
=>
'apc'
,
],
'array'
=>
[
'driver'
=>
'array'
'driver'
=>
'array'
,
],
'database'
=>
[
...
...
@@ -51,7 +51,7 @@ return [
'driver'
=>
'memcached'
,
'servers'
=>
[
[
'host'
=>
'127.0.0.1'
,
'port'
=>
11211
,
'weight'
=>
100
'host'
=>
'127.0.0.1'
,
'port'
=>
11211
,
'weight'
=>
100
,
],
],
],
...
...
This diff is collapsed.
Click to expand it.
config/filesystems.php
View file @
bf3785d0
...
...
@@ -77,7 +77,7 @@ return [
'container'
=>
'your-container'
,
'endpoint'
=>
'https://identity.api.rackspacecloud.com/v2.0/'
,
'region'
=>
'IAD'
,
'url_type'
=>
'publicURL'
'url_type'
=>
'publicURL'
,
],
],
...
...
This diff is collapsed.
Click to expand it.
config/view.php
View file @
bf3785d0
...
...
@@ -14,7 +14,7 @@ return [
*/
'paths'
=>
[
realpath
(
base_path
(
'resources/views'
))
realpath
(
base_path
(
'resources/views'
))
,
],
/*
...
...
This diff is collapsed.
Click to expand it.
database/seeds/DatabaseSeeder.php
View file @
bf3785d0
...
...
@@ -15,7 +15,7 @@ class DatabaseSeeder extends Seeder
Model
::
unguard
();
// $this->call('UserTableSeeder');
Model
::
reguard
();
}
}
This diff is collapsed.
Click to expand it.
public/index.php
View file @
bf3785d0
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
...
...
This diff is collapsed.
Click to expand it.
resources/lang/en/passwords.php
View file @
bf3785d0
...
...
@@ -13,10 +13,10 @@ return [
|
*/
"password"
=>
"Passwords must be at least six characters and match the confirmation."
,
"user"
=>
"We can't find a user with that e-mail address."
,
"token"
=>
"This password reset token is invalid."
,
"sent"
=>
"We have e-mailed your password reset link!"
,
"reset"
=>
"Your password has been reset!"
,
'password'
=>
'Passwords must be at least six characters and match the confirmation.'
,
'user'
=>
"We can't find a user with that e-mail address."
,
'token'
=>
'This password reset token is invalid.'
,
'sent'
=>
'We have e-mailed your password reset link!'
,
'reset'
=>
'Your password has been reset!'
,
];
This diff is collapsed.
Click to expand it.
resources/lang/en/validation.php
View file @
bf3785d0
...
...
@@ -13,66 +13,66 @@ return [
|
*/
"accepted"
=>
"The :attribute must be accepted."
,
"active_url"
=>
"The :attribute is not a valid URL."
,
"after"
=>
"The :attribute must be a date after :date."
,
"alpha"
=>
"The :attribute may only contain letters."
,
"alpha_dash"
=>
"The :attribute may only contain letters, numbers, and dashes."
,
"alpha_num"
=>
"The :attribute may only contain letters and numbers."
,
"array"
=>
"The :attribute must be an array."
,
"before"
=>
"The :attribute must be a date before :date."
,
"between"
=>
[
"numeric"
=>
"The :attribute must be between :min and :max."
,
"file"
=>
"The :attribute must be between :min and :max kilobytes."
,
"string"
=>
"The :attribute must be between :min and :max characters."
,
"array"
=>
"The :attribute must have between :min and :max items."
,
'accepted'
=>
'The :attribute must be accepted.'
,
'active_url'
=>
'The :attribute is not a valid URL.'
,
'after'
=>
'The :attribute must be a date after :date.'
,
'alpha'
=>
'The :attribute may only contain letters.'
,
'alpha_dash'
=>
'The :attribute may only contain letters, numbers, and dashes.'
,
'alpha_num'
=>
'The :attribute may only contain letters and numbers.'
,
'array'
=>
'The :attribute must be an array.'
,
'before'
=>
'The :attribute must be a date before :date.'
,
'between'
=>
[
'numeric'
=>
'The :attribute must be between :min and :max.'
,
'file'
=>
'The :attribute must be between :min and :max kilobytes.'
,
'string'
=>
'The :attribute must be between :min and :max characters.'
,
'array'
=>
'The :attribute must have between :min and :max items.'
,
],
"boolean"
=>
"The :attribute field must be true or false."
,
"confirmed"
=>
"The :attribute confirmation does not match."
,
"date"
=>
"The :attribute is not a valid date."
,
"date_format"
=>
"The :attribute does not match the format :format."
,
"different"
=>
"The :attribute and :other must be different."
,
"digits"
=>
"The :attribute must be :digits digits."
,
"digits_between"
=>
"The :attribute must be between :min and :max digits."
,
"email"
=>
"The :attribute must be a valid email address."
,
"filled"
=>
"The :attribute field is required."
,
"exists"
=>
"The selected :attribute is invalid."
,
"image"
=>
"The :attribute must be an image."
,
"in"
=>
"The selected :attribute is invalid."
,
"integer"
=>
"The :attribute must be an integer."
,
"ip"
=>
"The :attribute must be a valid IP address."
,
"max"
=>
[
"numeric"
=>
"The :attribute may not be greater than :max."
,
"file"
=>
"The :attribute may not be greater than :max kilobytes."
,
"string"
=>
"The :attribute may not be greater than :max characters."
,
"array"
=>
"The :attribute may not have more than :max items."
,
'boolean'
=>
'The :attribute field must be true or false.'
,
'confirmed'
=>
'The :attribute confirmation does not match.'
,
'date'
=>
'The :attribute is not a valid date.'
,
'date_format'
=>
'The :attribute does not match the format :format.'
,
'different'
=>
'The :attribute and :other must be different.'
,
'digits'
=>
'The :attribute must be :digits digits.'
,
'digits_between'
=>
'The :attribute must be between :min and :max digits.'
,
'email'
=>
'The :attribute must be a valid email address.'
,
'filled'
=>
'The :attribute field is required.'
,
'exists'
=>
'The selected :attribute is invalid.'
,
'image'
=>
'The :attribute must be an image.'
,
'in'
=>
'The selected :attribute is invalid.'
,
'integer'
=>
'The :attribute must be an integer.'
,
'ip'
=>
'The :attribute must be a valid IP address.'
,
'max'
=>
[
'numeric'
=>
'The :attribute may not be greater than :max.'
,
'file'
=>
'The :attribute may not be greater than :max kilobytes.'
,
'string'
=>
'The :attribute may not be greater than :max characters.'
,
'array'
=>
'The :attribute may not have more than :max items.'
,
],
"mimes"
=>
"The :attribute must be a file of type: :values."
,
"min"
=>
[
"numeric"
=>
"The :attribute must be at least :min."
,
"file"
=>
"The :attribute must be at least :min kilobytes."
,
"string"
=>
"The :attribute must be at least :min characters."
,
"array"
=>
"The :attribute must have at least :min items."
,
'mimes'
=>
'The :attribute must be a file of type: :values.'
,
'min'
=>
[
'numeric'
=>
'The :attribute must be at least :min.'
,
'file'
=>
'The :attribute must be at least :min kilobytes.'
,
'string'
=>
'The :attribute must be at least :min characters.'
,
'array'
=>
'The :attribute must have at least :min items.'
,
],
"not_in"
=>
"The selected :attribute is invalid."
,
"numeric"
=>
"The :attribute must be a number."
,
"regex"
=>
"The :attribute format is invalid."
,
"required"
=>
"The :attribute field is required."
,
"required_if"
=>
"The :attribute field is required when :other is :value."
,
"required_with"
=>
"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_all"
=>
"The :attribute field is required when none of :values are present."
,
"same"
=>
"The :attribute and :other must match."
,
"size"
=>
[
"numeric"
=>
"The :attribute must be :size."
,
"file"
=>
"The :attribute must be :size kilobytes."
,
"string"
=>
"The :attribute must be :size characters."
,
"array"
=>
"The :attribute must contain :size items."
,
'not_in'
=>
'The selected :attribute is invalid.'
,
'numeric'
=>
'The :attribute must be a number.'
,
'regex'
=>
'The :attribute format is invalid.'
,
'required'
=>
'The :attribute field is required.'
,
'required_if'
=>
'The :attribute field is required when :other is :value.'
,
'required_with'
=>
'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_all'
=>
'The :attribute field is required when none of :values are present.'
,
'same'
=>
'The :attribute and :other must match.'
,
'size'
=>
[
'numeric'
=>
'The :attribute must be :size.'
,
'file'
=>
'The :attribute must be :size kilobytes.'
,
'string'
=>
'The :attribute must be :size characters.'
,
'array'
=>
'The :attribute must contain :size items.'
,
],
"timezone"
=>
"The :attribute must be a valid zone."
,
"unique"
=>
"The :attribute has already been taken."
,
"url"
=>
"The :attribute format is invalid."
,
'timezone'
=>
'The :attribute must be a valid zone.'
,
'unique'
=>
'The :attribute has already been taken.'
,
'url'
=>
'The :attribute format is invalid.'
,
/*
|--------------------------------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
server.php
View file @
bf3785d0
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
...
...
This diff is collapsed.
Click to expand it.
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