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
Pull Request — master (#8)
by Pedro
03:38
created
build/Classes/AdapterMakerFile/Phalcon/Entity.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
                 '$this->belongsTo(\'%s\', \'%s\', \'%s\', array(\'alias\' => \'%s\'))',
55 55
                 $objColumn->getName (),
56 56
                 $makerFile->getConfig ()
57
-                          ->createClassNamespace ( $constrant ) . Phalcon::SEPARETOR . AbstractMaker::getClassName (
57
+                            ->createClassNamespace ( $constrant ) . Phalcon::SEPARETOR . AbstractMaker::getClassName (
58 58
                     $constrant->getTable ()
59 59
                 ),
60 60
                 $constrant->getColumn (),
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                     '$this->hasMany(\'%s\', \'%s\', \'%s\', array(\'alias\' => \'%s\'))',
87 87
                     $objColumn->getName (),
88 88
                     $makerFile->getConfig ()
89
-                              ->createClassNamespace ( $dependence )
89
+                                ->createClassNamespace ( $dependence )
90 90
                     . Phalcon::SEPARETOR
91 91
                     . AbstractMaker::getClassName ( $dependence->getTable () ),
92 92
                     $dependence->getColumn (),
Please login to merge, or discard this patch.
build/Classes/Config.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
         $configIni = isset( $argv[ 'config-ini' ] )
136 136
             ? $argv[ 'config-ini' ]
137 137
             : $this->_basePath
138
-              . $this->configIniDefault;
138
+                . $this->configIniDefault;
139 139
 
140 140
         $configTemp    = $this->loadIniFile ( realpath ( $configIni ) );
141 141
         $configCurrent = self::parseConfigEnv ( $configTemp, $argv );
Please login to merge, or discard this patch.
build/Classes/MakerFile.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
     {
89 89
         foreach ( $arrFoldersName as $index => $folderName ) {
90 90
             $arrFoldersName[ $index ] = $this->getConfig ()
91
-                                             ->replaceReservedWord ( $folderName );
91
+                                                ->replaceReservedWord ( $folderName );
92 92
         }
93 93
 
94 94
         return implode ( DIRECTORY_SEPARATOR, array_filter ( $arrFoldersName ) );
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
                 $folderName,
143 143
                 $this->getClassName (
144 144
                     $this->getConfig ()
145
-                         ->getDatabase ()
145
+                            ->getDatabase ()
146 146
                 )
147 147
             );
148 148
             $this->location = array ( $this->filterLocation ( $url ) );
@@ -275,7 +275,7 @@  discard block
 block discarded – undo
275 275
      * @return String
276 276
      */
277 277
     protected function getParsedTplContents ( $tplFile, $vars = array (), \Classes\Db\DbTable $objTables = null,
278
-                                              $objMakeFile = null
278
+                                                $objMakeFile = null
279 279
     ) {
280 280
 
281 281
         $arrUrl = array (
Please login to merge, or discard this patch.