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
69076cb1
Commit
69076cb1
authored
Jun 20, 2015
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
7a8800c6
3b0d0392
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
10 additions
and
6 deletions
+10
-6
Handler.php
app/Exceptions/Handler.php
+2
-1
composer.json
composer.json
+3
-1
app.php
config/app.php
+1
-1
services.php
config/services.php
+2
-2
validation.php
resources/lang/en/validation.php
+1
-0
server.php
server.php
+1
-1
No files found.
app/Exceptions/Handler.php
View file @
69076cb1
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
namespace
App\Exceptions
;
namespace
App\Exceptions
;
use
Exception
;
use
Exception
;
use
Symfony\Component\HttpKernel\Exception\HttpException
;
use
Illuminate\Foundation\Exceptions\Handler
as
ExceptionHandler
;
use
Illuminate\Foundation\Exceptions\Handler
as
ExceptionHandler
;
class
Handler
extends
ExceptionHandler
class
Handler
extends
ExceptionHandler
...
@@ -13,7 +14,7 @@ class Handler extends ExceptionHandler
...
@@ -13,7 +14,7 @@ class Handler extends ExceptionHandler
* @var array
* @var array
*/
*/
protected
$dontReport
=
[
protected
$dontReport
=
[
\Symfony\Component\HttpKernel\Exception\
HttpException
::
class
,
HttpException
::
class
,
];
];
/**
/**
...
...
composer.json
View file @
69076cb1
...
@@ -32,8 +32,10 @@
...
@@ -32,8 +32,10 @@
"php artisan clear-compiled"
,
"php artisan clear-compiled"
,
"php artisan optimize"
"php artisan optimize"
],
],
"pre-update-cmd"
:
[
"php artisan clear-compiled"
],
"post-update-cmd"
:
[
"post-update-cmd"
:
[
"php artisan clear-compiled"
,
"php artisan optimize"
"php artisan optimize"
],
],
"post-root-package-install"
:
[
"post-root-package-install"
:
[
...
...
config/app.php
View file @
69076cb1
...
@@ -13,7 +13,7 @@ return [
...
@@ -13,7 +13,7 @@ return [
|
|
*/
*/
'debug'
=>
env
(
'APP_DEBUG'
),
'debug'
=>
env
(
'APP_DEBUG'
,
false
),
/*
/*
|--------------------------------------------------------------------------
|--------------------------------------------------------------------------
...
...
config/services.php
View file @
69076cb1
...
@@ -24,14 +24,14 @@ return [
...
@@ -24,14 +24,14 @@ return [
],
],
'ses'
=>
[
'ses'
=>
[
'key'
=>
''
,
'key'
=>
''
,
'secret'
=>
''
,
'secret'
=>
''
,
'region'
=>
'us-east-1'
,
'region'
=>
'us-east-1'
,
],
],
'stripe'
=>
[
'stripe'
=>
[
'model'
=>
App\User
::
class
,
'model'
=>
App\User
::
class
,
'key'
=>
''
,
'key'
=>
''
,
'secret'
=>
''
,
'secret'
=>
''
,
],
],
...
...
resources/lang/en/validation.php
View file @
69076cb1
...
@@ -70,6 +70,7 @@ return [
...
@@ -70,6 +70,7 @@ return [
'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.'
,
],
],
'string'
=>
'The :attribute must be a string.'
,
'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 @
69076cb1
...
@@ -14,7 +14,7 @@ $uri = urldecode(
...
@@ -14,7 +14,7 @@ $uri = urldecode(
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
// application without having installed a "real" web server software here.
if
(
$uri
!==
'/'
and
file_exists
(
__DIR__
.
'/public'
.
$uri
))
{
if
(
$uri
!==
'/'
&&
file_exists
(
__DIR__
.
'/public'
.
$uri
))
{
return
false
;
return
false
;
}
}
...
...
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