GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Passed
Branch master (bf5cf5)
by O2System
02:43
created
Category
cli.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -11,8 +11,8 @@  discard block
 block discarded – undo
11 11
  */
12 12
 // ------------------------------------------------------------------------
13 13
 
14
-define( 'STARTUP_TIME', microtime( true ) );
15
-define( 'STARTUP_MEMORY', memory_get_usage( true ) );
14
+define('STARTUP_TIME', microtime(true));
15
+define('STARTUP_MEMORY', memory_get_usage(true));
16 16
 
17 17
 /*
18 18
  *---------------------------------------------------------------
@@ -32,13 +32,13 @@  discard block
 block discarded – undo
32 32
  * NOTE: If you change these, also change the error_reporting() code below
33 33
  *
34 34
  */
35
-if ( ! defined( 'ENVIRONMENT' ) ) {
35
+if ( ! defined('ENVIRONMENT')) {
36 36
     /**
37 37
      * Environment Stage
38 38
      *
39 39
      * @value DEVELOPMENT|TESTING|PRODUCTION
40 40
      */
41
-    define( 'ENVIRONMENT', 'DEVELOPMENT' );
41
+    define('ENVIRONMENT', 'DEVELOPMENT');
42 42
 
43 43
     /**
44 44
      * Environment Debug Stage
@@ -57,8 +57,8 @@  discard block
 block discarded – undo
57 57
  *
58 58
  * NO TRAILING SLASH!
59 59
  */
60
-if ( ! defined( 'DIR_APP' ) ) {
61
-    define( 'DIR_APP', 'app' );
60
+if ( ! defined('DIR_APP')) {
61
+    define('DIR_APP', 'app');
62 62
 }
63 63
 
64 64
 /*
@@ -70,8 +70,8 @@  discard block
 block discarded – undo
70 70
  *
71 71
  * NO TRAILING SLASH!
72 72
  */
73
-if ( ! defined( 'DIR_CACHE' ) ) {
74
-    define( 'DIR_CACHE', 'cache' );
73
+if ( ! defined('DIR_CACHE')) {
74
+    define('DIR_CACHE', 'cache');
75 75
 }
76 76
 
77 77
 /*
@@ -83,8 +83,8 @@  discard block
 block discarded – undo
83 83
  *
84 84
  * NO TRAILING SLASH!
85 85
  */
86
-if ( ! defined( 'DIR_STORAGE' ) ) {
87
-    define( 'DIR_STORAGE', 'storage' );
86
+if ( ! defined('DIR_STORAGE')) {
87
+    define('DIR_STORAGE', 'storage');
88 88
 }
89 89
 
90 90
 /*
@@ -96,8 +96,8 @@  discard block
 block discarded – undo
96 96
  *
97 97
  * NO TRAILING SLASH!
98 98
  */
99
-if ( ! defined( 'DIR_PUBLIC' ) ) {
100
-    define( 'DIR_PUBLIC', 'public' );
99
+if ( ! defined('DIR_PUBLIC')) {
100
+    define('DIR_PUBLIC', 'public');
101 101
 }
102 102
 
103 103
 /*
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
  * DEFINE ROOT PATH
106 106
  *---------------------------------------------------------------
107 107
  */
108
-define( 'PATH_ROOT', dirname( __FILE__ ) . DIRECTORY_SEPARATOR );
108
+define('PATH_ROOT', dirname(__FILE__) . DIRECTORY_SEPARATOR);
109 109
 
110 110
 /*
111 111
 |--------------------------------------------------------------------------
@@ -126,6 +126,6 @@  discard block
 block discarded – undo
126 126
  * STARTUP O2SYSTEM
127 127
  * ------------------------------------------------------
128 128
  */
129
-if ( class_exists( 'O2System\Framework', false ) ) {
129
+if (class_exists('O2System\Framework', false)) {
130 130
     O2System\Framework::getInstance();
131 131
 }
132 132
\ No newline at end of file
Please login to merge, or discard this patch.