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.
Completed
Push — master ( ec79d4...075301 )
by Pedro
04:30 queued 01:48
created
build/Classes/Update.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -38,9 +38,9 @@
 block discarded – undo
38 38
 
39 39
         $this->versionUpdate = $version;
40 40
         $this->tempFileName = self::$fileName
41
-                              . self::$separador
42
-                              . $this->versionUpdate
43
-                              . self::$extencion;
41
+                                . self::$separador
42
+                                . $this->versionUpdate
43
+                                . self::$extencion;
44 44
 
45 45
     }
46 46
 
Please login to merge, or discard this patch.
build/Classes/Update/ProgressBar.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@
 block discarded – undo
79 79
             {
80 80
                 $length = $this->getProgress ();
81 81
                 printf ( "\r[%-100s] %d%%" , str_repeat ( "=" , $length )
82
-                                             . ">" , $length );
82
+                                                . ">" , $length );
83 83
             }
84 84
         }
85 85
 
Please login to merge, or discard this patch.
build/Classes/Update/Content/AbstractContent.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -227,11 +227,11 @@
 block discarded – undo
227 227
     function progressCallback ( $download_size , $downloaded_size , $upload_size , $uploaded_size )
228 228
     {
229 229
         ProgressBar::getInstance ()
230
-                   ->clear ()
231
-                   ->setMaxByte ( $download_size )
232
-                   ->setProgress ( $downloaded_size )
233
-                   ->render ()
234
-                   ->finish ();
230
+                    ->clear ()
231
+                    ->setMaxByte ( $download_size )
232
+                    ->setProgress ( $downloaded_size )
233
+                    ->render ()
234
+                    ->finish ();
235 235
 
236 236
     }
237 237
 
Please login to merge, or discard this patch.
build/Classes/Update/Version.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         if ( self::HasNewVersion () )
39 39
         {
40 40
             return "\033[0;31mThere is a new version " . self::$lastVersion
41
-                   . " available\033[0m \n";
41
+                    . " available\033[0m \n";
42 42
         }
43 43
     }
44 44
 
Please login to merge, or discard this patch.
build/Classes/MakerFile.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
         foreach ( $arrFoldersName as $index => $folderName )
101 101
         {
102 102
             $arrFoldersName[ $index ] = $this->getConfig ()
103
-                                             ->replaceReservedWord ( $folderName );
103
+                                                ->replaceReservedWord ( $folderName );
104 104
         }
105 105
 
106 106
         return implode ( DIRECTORY_SEPARATOR , array_filter ( $arrFoldersName ) );
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
                 $folderName ,
158 158
                 $this->getClassName (
159 159
                     $this->getConfig ()
160
-                         ->getDatabase ()
160
+                            ->getDatabase ()
161 161
                 )
162 162
             );
163 163
             $this->location = array ( $this->filterLocation ( $url ) );
Please login to merge, or discard this patch.
build/Classes/Config.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -160,14 +160,14 @@  discard block
 block discarded – undo
160 160
     {
161 161
         $update = new Update();
162 162
         $update->update ()
163
-               ->modifyTempName ();
163
+                ->modifyTempName ();
164 164
     }
165 165
 
166 166
     public function download ( $version )
167 167
     {
168 168
         $update = new Update();
169 169
         $update->downloadVersion ( $version )
170
-               ->modifyTempName ();
170
+                ->modifyTempName ();
171 171
     }
172 172
 
173 173
     public function getVersion ()
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
         $configIni = isset( $argv[ 'name-ini' ] )
194 194
             ? $argv[ 'name-ini' ]
195 195
             : $this->_basePath
196
-              . $this->configIniDefault;
196
+                . $this->configIniDefault;
197 197
 
198 198
         $configTemp = $this->loadIniFile ( realpath ( $configIni ) );
199 199
         $configCurrent = self::parseConfigEnv ( $configTemp , $argv );
@@ -207,7 +207,7 @@  discard block
 block discarded – undo
207 207
         {
208 208
             $frameworks = implode ( "\n\t" , $this->frameworkList );
209 209
             throw new \Exception( "list of frameworks: \n\t\033[1;33m" . $frameworks
210
-                                  . "\n\033[0m" );
210
+                                    . "\n\033[0m" );
211 211
         }
212 212
 
213 213
         return $argv + array_filter ( $configCurrent );
Please login to merge, or discard this patch.