Skip to content

Commit 29fda98

Browse files
committed
Release 4.0.0-rc.2
1 parent 470279c commit 29fda98

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

app/Config/Boot/development.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
| painful debugging.
99
*/
1010
error_reporting(-1);
11-
ini_set('display_errors', 1);
11+
ini_set('display_errors', '1');
1212

1313
/*
1414
|--------------------------------------------------------------------------

app/Config/Boot/production.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
| Don't show ANY in production environments. Instead, let the system catch
88
| it and display a generic error message.
99
*/
10-
ini_set('display_errors', 0);
10+
ini_set('display_errors', '0');
1111
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED);
1212

1313
/*

app/Config/Boot/testing.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
| painful debugging.
1010
*/
1111
error_reporting(-1);
12-
ini_set('display_errors', 1);
12+
ini_set('display_errors', '1');
1313

1414
/*
1515
|--------------------------------------------------------------------------

app/Config/Constants.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
// NOTE: changing this will require manually modifying the
1212
// existing namespaces of App\* namespaced-classes.
1313
//
14-
define('APP_NAMESPACE', 'App');
14+
defined('APP_NAMESPACE') || define('APP_NAMESPACE', 'App');
1515

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

2626
/*
2727
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)