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 ( 660260...e1c224 )
by Pedro
03:36
created
build/Classes/AdaptersDriver/AbsractAdapter.php 1 patch
Indentation   +34 added lines, -34 removed lines patch added patch discarded remove patch
@@ -107,31 +107,31 @@  discard block
 block discarded – undo
107 107
             if ( $table->hasColumn ( $constrant[ "column_name" ] ) )
108 108
             {
109 109
                 $objConstrant = Constrant::getInstance ()
110
-                                         ->populate (
111
-                                             array (
112
-                                                 'constrant' => $constrant[ 'constraint_name' ] ,
113
-                                                 'schema'    => $constrant[ 'foreign_schema' ] ,
114
-                                                 'table'     => $constrant[ 'foreign_table' ] ,
115
-                                                 'column'    => $constrant[ 'foreign_column' ]
116
-                                             )
117
-                                         );
110
+                                            ->populate (
111
+                                                array (
112
+                                                    'constrant' => $constrant[ 'constraint_name' ] ,
113
+                                                    'schema'    => $constrant[ 'foreign_schema' ] ,
114
+                                                    'table'     => $constrant[ 'foreign_table' ] ,
115
+                                                    'column'    => $constrant[ 'foreign_column' ]
116
+                                                )
117
+                                            );
118 118
 
119 119
                 switch ( $constrant[ 'constraint_type' ] )
120 120
                 {
121 121
                     case "FOREIGN KEY":
122 122
                         $table->getColumn ( $constrant[ "column_name" ] )
123
-                              ->addRefFk ( $objConstrant );
123
+                                ->addRefFk ( $objConstrant );
124 124
                         break;
125 125
                     case"PRIMARY KEY":
126 126
                         $table->getColumn ( $constrant[ "column_name" ] )
127
-                              ->setPrimaryKey ( $objConstrant )
128
-                              ->setSequence (
129
-                                  $this->getSequence (
130
-                                      $table_name ,
131
-                                      $constrant[ "column_name" ],
132
-                                      $schema
133
-                                  )
134
-                              );
127
+                                ->setPrimaryKey ( $objConstrant )
128
+                                ->setSequence (
129
+                                    $this->getSequence (
130
+                                        $table_name ,
131
+                                        $constrant[ "column_name" ],
132
+                                        $schema
133
+                                    )
134
+                                );
135 135
                         break;
136 136
                 }
137 137
             }
@@ -151,12 +151,12 @@  discard block
 block discarded – undo
151 151
             if ( $table->hasColumn ( $constrant[ "foreign_column" ] ) )
152 152
             {
153 153
                 $table->getColumn ( $constrant[ "foreign_column" ] )
154
-                      ->createDependece (
155
-                          $constrant[ 'constraint_name' ] ,
156
-                          $constrant[ 'table_name' ] ,
157
-                          $constrant[ 'column_name' ] ,
158
-                          $constrant[ 'table_schema' ]
159
-                      );
154
+                        ->createDependece (
155
+                            $constrant[ 'constraint_name' ] ,
156
+                            $constrant[ 'table_name' ] ,
157
+                            $constrant[ 'column_name' ] ,
158
+                            $constrant[ 'table_schema' ]
159
+                        );
160 160
             }
161 161
         }
162 162
     }
@@ -191,10 +191,10 @@  discard block
 block discarded – undo
191 191
                             );
192 192
 
193 193
             $this->getTable ( $key , $schema )
194
-                 ->addColumn ( $column )
195
-                 ->setNamespace (
196
-                     $this->config->createClassNamespace ( $this->getTable ( $key , $schema ) )
197
-                 );
194
+                    ->addColumn ( $column )
195
+                    ->setNamespace (
196
+                        $this->config->createClassNamespace ( $this->getTable ( $key , $schema ) )
197
+                    );
198 198
         }
199 199
     }
200 200
 
@@ -254,13 +254,13 @@  discard block
 block discarded – undo
254 254
     public function createTable ( $nameTable , $schema = 0 )
255 255
     {
256 256
         $this->objDbTables[ $schema ][ trim ( $nameTable ) ] = DbTable::getInstance ()
257
-                                                                      ->populate (
258
-                                                                          array (
259
-                                                                              'table'    => $nameTable ,
260
-                                                                              'schema'   => $schema ,
261
-                                                                              'database' => $this->database
262
-                                                                          )
263
-                                                                      );
257
+                                                                        ->populate (
258
+                                                                            array (
259
+                                                                                'table'    => $nameTable ,
260
+                                                                                'schema'   => $schema ,
261
+                                                                                'database' => $this->database
262
+                                                                            )
263
+                                                                        );
264 264
 
265 265
         return $this;
266 266
     }
Please login to merge, or discard this patch.
build/Classes/AdapterMakerFile/ZendFrameworkOne/Entity.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
             $parents[] = array (
63 63
                 'class'    => $makerFile->getConfig ()
64 64
                                         ->createClassNamespace ( $constrant )
65
-                              . ZendFrameworkOne::SEPARETOR
66
-                              . AbstractMaker::getClassName ( $constrant->getTable () ) ,
65
+                                . ZendFrameworkOne::SEPARETOR
66
+                                . AbstractMaker::getClassName ( $constrant->getTable () ) ,
67 67
                 'function' => AbstractMaker::getClassName ( $name ) ,
68 68
                 'table'    => $constrant->getTable () ,
69 69
                 'column'   => $objColumn->getName () ,
@@ -103,8 +103,8 @@  discard block
 block discarded – undo
103 103
                     $depends[] = array (
104 104
                         'class'    => $makerFile->getConfig ()
105 105
                                                 ->createClassNamespace ( $dependence )
106
-                                      . ZendFrameworkOne::SEPARETOR
107
-                                      . AbstractMaker::getClassName ( $dependence->getTable () ) ,
106
+                                        . ZendFrameworkOne::SEPARETOR
107
+                                        . AbstractMaker::getClassName ( $dependence->getTable () ) ,
108 108
                         'function' => AbstractMaker::getClassName ( $name ) ,
109 109
                         'table'    => $dependence->getTable () ,
110 110
                         'column'   => $dependence->getColumn () ,
Please login to merge, or discard this patch.