Passed
Push — development ( 706c72...03b06c )
by Peter
01:53
created
app/init.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -8,15 +8,15 @@
 block discarded – undo
8 8
 
9 9
 
10 10
 // class loader
11
-require(($appRoot=dirname(__DIR__)).'/vendor/autoload.php');
11
+require(($appRoot = dirname(__DIR__)).'/vendor/autoload.php');
12 12
 
13 13
 
14 14
 // php.ini settings
15 15
 error_reporting(E_ALL & ~E_DEPRECATED);
16 16
 
17
-PHP::ini_set('log_errors',      '1'                          );
18
-PHP::ini_set('error_log',       $appRoot.'/log/php-error.log');
19
-PHP::ini_set('default_charset', 'UTF-8'                      );
17
+PHP::ini_set('log_errors', '1');
18
+PHP::ini_set('error_log', $appRoot.'/log/php-error.log');
19
+PHP::ini_set('default_charset', 'UTF-8');
20 20
 
21 21
 
22 22
 // create a new application
Please login to merge, or discard this patch.