Skip to content

Commit

Permalink
Release 4.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
jim-parry committed Sep 27, 2019
1 parent 470279c commit 29fda98
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/Config/Boot/development.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
| painful debugging.
*/
error_reporting(-1);
ini_set('display_errors', 1);
ini_set('display_errors', '1');

/*
|--------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion app/Config/Boot/production.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| Don't show ANY in production environments. Instead, let the system catch
| it and display a generic error message.
*/
ini_set('display_errors', 0);
ini_set('display_errors', '0');
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);

/*
Expand Down
2 changes: 1 addition & 1 deletion app/Config/Boot/testing.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
| painful debugging.
*/
error_reporting(-1);
ini_set('display_errors', 1);
ini_set('display_errors', '1');

/*
|--------------------------------------------------------------------------
Expand Down
4 changes: 2 additions & 2 deletions app/Config/Constants.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
// NOTE: changing this will require manually modifying the
// existing namespaces of App\* namespaced-classes.
//
define('APP_NAMESPACE', 'App');
defined('APP_NAMESPACE') || define('APP_NAMESPACE', 'App');

/*
|--------------------------------------------------------------------------
Expand All @@ -21,7 +21,7 @@
| The path that Composer's autoload file is expected to live. By default,
| the vendor folder is in the Root directory, but you can customize that here.
*/
define('COMPOSER_PATH', ROOTPATH . 'vendor/autoload.php');
defined('COMPOSER_PATH') || define('COMPOSER_PATH', ROOTPATH . 'vendor/autoload.php');

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 29fda98

Please sign in to comment.