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
Push — master ( b5f652...4f49fa )
by Steeven
01:43
created
app/Config/Services.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,5 +27,5 @@
 block discarded – undo
27 27
 */
28 28
 
29 29
 $services = [
30
-	//'foo' => 'App\Libraries\Foo'
30
+ //'foo' => 'App\Libraries\Foo'
31 31
 ];
32 32
\ No newline at end of file
Please login to merge, or discard this patch.
app/Commanders/Hello.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -70,9 +70,9 @@
 block discarded – undo
70 70
      * @param  string $name Option name parameter
71 71
      * @return void
72 72
      */
73
-    public function optionName( $name ) 
73
+    public function optionName($name) 
74 74
     {
75
-        $this->optionName = ucfirst ( trim( $name ) );
75
+        $this->optionName = ucfirst(trim($name));
76 76
     }
77 77
 
78 78
     // ------------------------------------------------------------------------
Please login to merge, or discard this patch.
cli.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -20,8 +20,8 @@  discard block
 block discarded – undo
20 20
 
21 21
 // ------------------------------------------------------------------------
22 22
 
23
-define( 'STARTUP_TIME', microtime( true ) );
24
-define( 'STARTUP_MEMORY', memory_get_usage( true ) );
23
+define('STARTUP_TIME', microtime(true));
24
+define('STARTUP_MEMORY', memory_get_usage(true));
25 25
 
26 26
 /*
27 27
  *---------------------------------------------------------------
@@ -41,13 +41,13 @@  discard block
 block discarded – undo
41 41
  * NOTE: If you change these, also change the error_reporting() code below
42 42
  *
43 43
  */
44
-if ( ! defined( 'ENVIRONMENT' ) ) {
44
+if ( ! defined('ENVIRONMENT')) {
45 45
     /**
46 46
      * Environment Stage
47 47
      *
48 48
      * @value DEVELOPMENT|TESTING|PRODUCTION
49 49
      */
50
-    define( 'ENVIRONMENT', 'DEVELOPMENT' );
50
+    define('ENVIRONMENT', 'DEVELOPMENT');
51 51
 
52 52
     /**
53 53
      * Environment Debug Stage
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
  *
67 67
  * NO TRAILING SLASH!
68 68
  */
69
-if ( ! defined( 'DIR_APP' ) ) {
70
-    define( 'DIR_APP', 'app' );
69
+if ( ! defined('DIR_APP')) {
70
+    define('DIR_APP', 'app');
71 71
 }
72 72
 
73 73
 /*
@@ -79,8 +79,8 @@  discard block
 block discarded – undo
79 79
  *
80 80
  * NO TRAILING SLASH!
81 81
  */
82
-if ( ! defined( 'DIR_CACHE' ) ) {
83
-    define( 'DIR_CACHE', 'cache' );
82
+if ( ! defined('DIR_CACHE')) {
83
+    define('DIR_CACHE', 'cache');
84 84
 }
85 85
 
86 86
 /*
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
  *
93 93
  * NO TRAILING SLASH!
94 94
  */
95
-if ( ! defined( 'DIR_STORAGE' ) ) {
96
-    define( 'DIR_STORAGE', 'storage' );
95
+if ( ! defined('DIR_STORAGE')) {
96
+    define('DIR_STORAGE', 'storage');
97 97
 }
98 98
 
99 99
 /*
@@ -105,8 +105,8 @@  discard block
 block discarded – undo
105 105
  *
106 106
  * NO TRAILING SLASH!
107 107
  */
108
-if ( ! defined( 'DIR_RESOURCES' ) ) {
109
-    define( 'DIR_RESOURCES', 'resources' );
108
+if ( ! defined('DIR_RESOURCES')) {
109
+    define('DIR_RESOURCES', 'resources');
110 110
 }
111 111
 
112 112
 /*
@@ -118,8 +118,8 @@  discard block
 block discarded – undo
118 118
  *
119 119
  * NO TRAILING SLASH!
120 120
  */
121
-if ( ! defined( 'DIR_DATABASE' ) ) {
122
-    define( 'DIR_DATABASE', 'database' );
121
+if ( ! defined('DIR_DATABASE')) {
122
+    define('DIR_DATABASE', 'database');
123 123
 }
124 124
 
125 125
 /*
@@ -131,12 +131,12 @@  discard block
 block discarded – undo
131 131
  *
132 132
  * NO TRAILING SLASH!
133 133
  */
134
-if ( ! defined( 'DIR_PUBLIC' ) ) {
134
+if ( ! defined('DIR_PUBLIC')) {
135 135
     // cpanel based hosting
136
-    if(is_dir('../public_html')) {
137
-        define( 'DIR_PUBLIC', 'public' );
136
+    if (is_dir('../public_html')) {
137
+        define('DIR_PUBLIC', 'public');
138 138
     } else {
139
-        define( 'DIR_PUBLIC', 'public' );
139
+        define('DIR_PUBLIC', 'public');
140 140
     }
141 141
 }
142 142
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
  * DEFINE ROOT PATH
146 146
  *---------------------------------------------------------------
147 147
  */
148
-define( 'PATH_ROOT', dirname( __FILE__ ) . DIRECTORY_SEPARATOR );
148
+define('PATH_ROOT', dirname(__FILE__) . DIRECTORY_SEPARATOR);
149 149
 
150 150
 /*
151 151
  *---------------------------------------------------------------
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
  *
155 155
  * Ensure the current directory is pointing to the front controller's directory
156 156
  */
157
-chdir( __DIR__ . DIRECTORY_SEPARATOR );
157
+chdir(__DIR__ . DIRECTORY_SEPARATOR);
158 158
 
159 159
 /*
160 160
 |--------------------------------------------------------------------------
@@ -174,6 +174,6 @@  discard block
 block discarded – undo
174 174
  * STARTUP O2SYSTEM
175 175
  * ------------------------------------------------------
176 176
  */
177
-if ( class_exists( 'O2System\Reactor', false ) ) {
177
+if (class_exists('O2System\Reactor', false)) {
178 178
     O2System\Reactor::getInstance();
179 179
 }
Please login to merge, or discard this patch.