File tree 4 files changed +5
-5
lines changed
4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 8
8
| painful debugging.
9
9
*/
10
10
error_reporting (-1 );
11
- ini_set ('display_errors ' , 1 );
11
+ ini_set ('display_errors ' , ' 1 ' );
12
12
13
13
/*
14
14
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change 7
7
| Don't show ANY in production environments. Instead, let the system catch
8
8
| it and display a generic error message.
9
9
*/
10
- ini_set ('display_errors ' , 0 );
10
+ ini_set ('display_errors ' , ' 0 ' );
11
11
error_reporting (E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT & ~E_USER_NOTICE & ~E_USER_DEPRECATED );
12
12
13
13
/*
Original file line number Diff line number Diff line change 9
9
| painful debugging.
10
10
*/
11
11
error_reporting (-1 );
12
- ini_set ('display_errors ' , 1 );
12
+ ini_set ('display_errors ' , ' 1 ' );
13
13
14
14
/*
15
15
|--------------------------------------------------------------------------
Original file line number Diff line number Diff line change 11
11
// NOTE: changing this will require manually modifying the
12
12
// existing namespaces of App\* namespaced-classes.
13
13
//
14
- define ('APP_NAMESPACE ' , 'App ' );
14
+ defined ( ' APP_NAMESPACE ' ) || define ('APP_NAMESPACE ' , 'App ' );
15
15
16
16
/*
17
17
|--------------------------------------------------------------------------
21
21
| The path that Composer's autoload file is expected to live. By default,
22
22
| the vendor folder is in the Root directory, but you can customize that here.
23
23
*/
24
- define ('COMPOSER_PATH ' , ROOTPATH . 'vendor/autoload.php ' );
24
+ defined ( ' COMPOSER_PATH ' ) || define ('COMPOSER_PATH ' , ROOTPATH . 'vendor/autoload.php ' );
25
25
26
26
/*
27
27
|--------------------------------------------------------------------------
You can’t perform that action at this time.
0 commit comments