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 (0e0419)
by Pedro
04:31
created
build/Classes/AdaptersDriver/Mysql.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -298,8 +298,8 @@
 block discarded – undo
298 298
     public function getSequence ( $table , $column )
299 299
     {
300 300
         $return = $this->getPDO ()
301
-                       ->query ( "select * from information_schema.columns where extra like '%auto_increment%' and  TABLE_SCHEMA='{$this->database}' AND TABLE_NAME='{$table}' AND COLUMN_NAME='{$column}';" )
302
-                       ->fetch ( \PDO::FETCH_ASSOC );
301
+                        ->query ( "select * from information_schema.columns where extra like '%auto_increment%' and  TABLE_SCHEMA='{$this->database}' AND TABLE_NAME='{$table}' AND COLUMN_NAME='{$column}';" )
302
+                        ->fetch ( \PDO::FETCH_ASSOC );
303 303
 
304 304
         if ( ! $return )
305 305
         {
Please login to merge, or discard this patch.
build/Classes/AdaptersDriver/Pgsql.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@
 block discarded – undo
247 247
     {
248 248
         $pdo = $this->getPDO ();
249 249
         $return1 = $pdo->query ( "SELECT pg_get_serial_sequence('$table', '$column');" )
250
-                       ->fetchColumn ();
250
+                        ->fetchColumn ();
251 251
 
252 252
         if ( $return1 )
253 253
         {
Please login to merge, or discard this patch.
build/Classes/AdapterMakerFile/ZendFrameworkOne/Model.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,6 +19,6 @@
 block discarded – undo
19 19
 
20 20
     public function parseRelation ( \Classes\MakerFile $makerFile, \Classes\Db\DbTable $dbTable )
21 21
     {
22
-       return array();
22
+        return array();
23 23
     }
24 24
 }
Please login to merge, or discard this patch.
build/Classes/AdapterMakerFile/AbstractAdapter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
      */
118 118
     public function isOverwrite ()
119 119
     {
120
-       return $this->overwrite;
120
+        return $this->overwrite;
121 121
     }
122 122
 
123 123
 }
Please login to merge, or discard this patch.
build/Classes/AdapterConfig/AbstractAdapter.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
         'database' => true ,
68 68
         'host'     => true ,
69 69
         'username' => true ,
70
-       // 'password' => true ,
70
+        // 'password' => true ,
71 71
         'path'     => true
72 72
     );
73 73
 
Please login to merge, or discard this patch.