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 (#29)
by Pedro
06:35
created
build/Classes/AdaptersDriver/AbsractAdapter.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -218,7 +218,7 @@  discard block
 block discarded – undo
218 218
     /**
219 219
      * Retorna o Nome da Sequence da tabela
220 220
      *
221
-     * @param $table
221
+     * @param string $table
222 222
      * @param $column
223 223
      *
224 224
      * @return string
@@ -269,7 +269,7 @@  discard block
 block discarded – undo
269 269
      * @param     $nameTable
270 270
      * @param int $schema
271 271
      *
272
-     * @return \Classes\Db\DbTable
272
+     * @return AbsractAdapter
273 273
      */
274 274
     public function createTable ( $nameTable , $schema = 0 )
275 275
     {
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
 
330 330
     /**
331 331
      * @param string     $nameTable
332
-     * @param int|string $schema
332
+     * @param integer $schema
333 333
      *
334 334
      * @return bool
335 335
      */
Please login to merge, or discard this patch.
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -115,32 +115,32 @@  discard block
 block discarded – undo
115 115
             if ( $table->hasColumn ( $constrant[ "column_name" ] ) )
116 116
             {
117 117
                 $objConstrant = Constrant::getInstance ()
118
-                                         ->populate (
119
-                                             array (
120
-                                                 'constrant' => $constrant[ 'constraint_name' ] ,
121
-                                                 'schema'    => $constrant[ 'foreign_schema' ] ,
122
-                                                 'table'     => $constrant[ 'foreign_table' ] ,
123
-                                                 'column'    => $constrant[ 'foreign_column' ] ,
124
-                                                 'database'  => $this->database
125
-                                             )
126
-                                         );
118
+                                            ->populate (
119
+                                                array (
120
+                                                    'constrant' => $constrant[ 'constraint_name' ] ,
121
+                                                    'schema'    => $constrant[ 'foreign_schema' ] ,
122
+                                                    'table'     => $constrant[ 'foreign_table' ] ,
123
+                                                    'column'    => $constrant[ 'foreign_column' ] ,
124
+                                                    'database'  => $this->database
125
+                                                )
126
+                                            );
127 127
 
128 128
                 switch ( $constrant[ 'constraint_type' ] )
129 129
                 {
130 130
                     case "FOREIGN KEY":
131 131
                         $table->getColumn ( $constrant[ "column_name" ] )
132
-                              ->addRefFk ( $objConstrant );
132
+                                ->addRefFk ( $objConstrant );
133 133
                         break;
134 134
                     case"PRIMARY KEY":
135 135
                         $table->getColumn ( $constrant[ "column_name" ] )
136
-                              ->setPrimaryKey ( $objConstrant )
137
-                              ->setSequence (
138
-                                  $this->getSequence (
139
-                                      $table_name ,
140
-                                      $constrant[ "column_name" ] ,
141
-                                      $schema
142
-                                  )
143
-                              );
136
+                                ->setPrimaryKey ( $objConstrant )
137
+                                ->setSequence (
138
+                                    $this->getSequence (
139
+                                        $table_name ,
140
+                                        $constrant[ "column_name" ] ,
141
+                                        $schema
142
+                                    )
143
+                                );
144 144
                         break;
145 145
                 }
146 146
             }
@@ -160,13 +160,13 @@  discard block
 block discarded – undo
160 160
             if ( $table->hasColumn ( $constrant[ "foreign_column" ] ) )
161 161
             {
162 162
                 $table->getColumn ( $constrant[ "foreign_column" ] )
163
-                      ->createDependece (
164
-                          $constrant[ 'constraint_name' ] ,
165
-                          $constrant[ 'table_name' ] ,
166
-                          $constrant[ 'column_name' ] ,
167
-                          $this->database ,
168
-                          $constrant[ 'table_schema' ]
169
-                      );
163
+                        ->createDependece (
164
+                            $constrant[ 'constraint_name' ] ,
165
+                            $constrant[ 'table_name' ] ,
166
+                            $constrant[ 'column_name' ] ,
167
+                            $this->database ,
168
+                            $constrant[ 'table_schema' ]
169
+                        );
170 170
             }
171 171
         }
172 172
     }
@@ -201,10 +201,10 @@  discard block
 block discarded – undo
201 201
                             );
202 202
 
203 203
             $this->getTable ( $key , $schema )
204
-                 ->addColumn ( $column )
205
-                 ->setNamespace (
206
-                     $this->config->createClassNamespace ( $this->getTable ( $key , $schema ) )
207
-                 );
204
+                    ->addColumn ( $column )
205
+                    ->setNamespace (
206
+                        $this->config->createClassNamespace ( $this->getTable ( $key , $schema ) )
207
+                    );
208 208
         }
209 209
     }
210 210
 
@@ -279,13 +279,13 @@  discard block
 block discarded – undo
279 279
         }
280 280
 
281 281
         $this->objDbTables[ strtoupper($schema) ][ trim ( $nameTable ) ] = DbTable::getInstance ()
282
-                                                                      ->populate (
283
-                                                                          array (
284
-                                                                              'table'    => $nameTable ,
285
-                                                                              'schema'   => $schema ,
286
-                                                                              'database' => $this->database
287
-                                                                          )
288
-                                                                      );
282
+                                                                        ->populate (
283
+                                                                            array (
284
+                                                                                'table'    => $nameTable ,
285
+                                                                                'schema'   => $schema ,
286
+                                                                                'database' => $this->database
287
+                                                                            )
288
+                                                                        );
289 289
 
290 290
         return $this;
291 291
     }
Please login to merge, or discard this patch.
Spacing   +115 added lines, -115 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * @type \Classes\Db\Iterators\DbTables[]
69 69
      */
70
-    private $objDbTables = array ();
70
+    private $objDbTables = array();
71 71
 
72 72
     /**
73 73
      * @var AbstractAdapter
@@ -82,22 +82,22 @@  discard block
 block discarded – undo
82 82
     /**
83 83
      * analisa e popula as Foreing keys, Primary keys e dependencias do banco nos objetos
84 84
      */
85
-    protected function parseConstrants ()
85
+    protected function parseConstrants()
86 86
     {
87
-        foreach ( $this->getListConstrant () as $constrant )
87
+        foreach ($this->getListConstrant() as $constrant)
88 88
         {
89 89
 
90
-            $schema = $constrant[ 'table_schema' ];
91
-            $table_name = $constrant [ 'table_name' ];
92
-            $this->populateForeignAndPrimaryKeys ( $constrant , $table_name , $schema );
93
-            unset( $table_name , $schema );
90
+            $schema = $constrant['table_schema'];
91
+            $table_name = $constrant ['table_name'];
92
+            $this->populateForeignAndPrimaryKeys($constrant, $table_name, $schema);
93
+            unset($table_name, $schema);
94 94
 
95
-            if ( $constrant[ 'constraint_type' ] == "FOREIGN KEY" )
95
+            if ($constrant['constraint_type'] == "FOREIGN KEY")
96 96
             {
97
-                $schema = $constrant[ 'foreign_schema' ];
98
-                $table_name = $constrant [ 'foreign_table' ];
99
-                $this->populateDependece ( $constrant , $table_name , $schema );
100
-                unset( $table_name , $schema );
97
+                $schema = $constrant['foreign_schema'];
98
+                $table_name = $constrant ['foreign_table'];
99
+                $this->populateDependece($constrant, $table_name, $schema);
100
+                unset($table_name, $schema);
101 101
             }
102 102
         }
103 103
     }
@@ -107,37 +107,37 @@  discard block
 block discarded – undo
107 107
      * @param string $table_name
108 108
      * @param int    $schema
109 109
      */
110
-    private function populateForeignAndPrimaryKeys ( $constrant , $table_name , $schema = 0 )
110
+    private function populateForeignAndPrimaryKeys($constrant, $table_name, $schema = 0)
111 111
     {
112
-        if ( $this->hasTable ( $table_name , $schema ) )
112
+        if ($this->hasTable($table_name, $schema))
113 113
         {
114
-            $table = $this->getTable ( $table_name , $schema );
115
-            if ( $table->hasColumn ( $constrant[ "column_name" ] ) )
114
+            $table = $this->getTable($table_name, $schema);
115
+            if ($table->hasColumn($constrant["column_name"]))
116 116
             {
117
-                $objConstrant = Constrant::getInstance ()
118
-                                         ->populate (
119
-                                             array (
120
-                                                 'constrant' => $constrant[ 'constraint_name' ] ,
121
-                                                 'schema'    => $constrant[ 'foreign_schema' ] ,
122
-                                                 'table'     => $constrant[ 'foreign_table' ] ,
123
-                                                 'column'    => $constrant[ 'foreign_column' ] ,
117
+                $objConstrant = Constrant::getInstance()
118
+                                         ->populate(
119
+                                             array(
120
+                                                 'constrant' => $constrant['constraint_name'],
121
+                                                 'schema'    => $constrant['foreign_schema'],
122
+                                                 'table'     => $constrant['foreign_table'],
123
+                                                 'column'    => $constrant['foreign_column'],
124 124
                                                  'database'  => $this->database
125 125
                                              )
126 126
                                          );
127 127
 
128
-                switch ( $constrant[ 'constraint_type' ] )
128
+                switch ($constrant['constraint_type'])
129 129
                 {
130 130
                     case "FOREIGN KEY":
131
-                        $table->getColumn ( $constrant[ "column_name" ] )
132
-                              ->addRefFk ( $objConstrant );
131
+                        $table->getColumn($constrant["column_name"])
132
+                              ->addRefFk($objConstrant);
133 133
                         break;
134 134
                     case"PRIMARY KEY":
135
-                        $table->getColumn ( $constrant[ "column_name" ] )
136
-                              ->setPrimaryKey ( $objConstrant )
137
-                              ->setSequence (
138
-                                  $this->getSequence (
139
-                                      $table_name ,
140
-                                      $constrant[ "column_name" ] ,
135
+                        $table->getColumn($constrant["column_name"])
136
+                              ->setPrimaryKey($objConstrant)
137
+                              ->setSequence(
138
+                                  $this->getSequence(
139
+                                      $table_name,
140
+                                      $constrant["column_name"],
141 141
                                       $schema
142 142
                                   )
143 143
                               );
@@ -152,20 +152,20 @@  discard block
 block discarded – undo
152 152
      * @param string $table_name
153 153
      * @param int    $schema
154 154
      */
155
-    private function populateDependece ( $constrant , $table_name , $schema = 0 )
155
+    private function populateDependece($constrant, $table_name, $schema = 0)
156 156
     {
157
-        if ( $this->hasTable ( $table_name , $schema ) )
157
+        if ($this->hasTable($table_name, $schema))
158 158
         {
159
-            $table = $this->getTable ( $table_name , $schema );
160
-            if ( $table->hasColumn ( $constrant[ "foreign_column" ] ) )
159
+            $table = $this->getTable($table_name, $schema);
160
+            if ($table->hasColumn($constrant["foreign_column"]))
161 161
             {
162
-                $table->getColumn ( $constrant[ "foreign_column" ] )
163
-                      ->createDependece (
164
-                          $constrant[ 'constraint_name' ] ,
165
-                          $constrant[ 'table_name' ] ,
166
-                          $constrant[ 'column_name' ] ,
167
-                          $this->database ,
168
-                          $constrant[ 'table_schema' ]
162
+                $table->getColumn($constrant["foreign_column"])
163
+                      ->createDependece(
164
+                          $constrant['constraint_name'],
165
+                          $constrant['table_name'],
166
+                          $constrant['column_name'],
167
+                          $this->database,
168
+                          $constrant['table_schema']
169 169
                       );
170 170
             }
171 171
         }
@@ -174,36 +174,36 @@  discard block
 block discarded – undo
174 174
     /**
175 175
      * cria um Array com nome das tabelas
176 176
      */
177
-    public function parseTables ()
177
+    public function parseTables()
178 178
     {
179
-        if ( $this->hasTables () )
179
+        if ($this->hasTables())
180 180
         {
181
-            return $this->getAllTables ();
181
+            return $this->getAllTables();
182 182
         }
183 183
 
184
-        foreach ( $this->getListColumns () as $table )
184
+        foreach ($this->getListColumns() as $table)
185 185
         {
186
-            $schema = $table[ 'table_schema' ];
187
-            $key = $table [ 'table_name' ];
188
-            if ( ! $this->hasTable ( $key , $schema ) )
186
+            $schema = $table['table_schema'];
187
+            $key = $table ['table_name'];
188
+            if ( ! $this->hasTable($key, $schema))
189 189
             {
190
-                $this->createTable ( $key , $schema );
190
+                $this->createTable($key, $schema);
191 191
             }
192 192
 
193
-            $column = Column::getInstance ()
194
-                            ->populate (
195
-                                array (
196
-                                    'name'       => $table [ 'column_name' ] ,
197
-                                    'type'       => $this->convertTypeToSimple ( $table[ 'data_type' ] ) ,
198
-                                    'nullable'   => (is_string($table[ 'is_nullable' ]) && strtolower($table[ 'is_nullable' ]) != 'no' ) ,
199
-                                    'max_length' => $table[ 'max_length' ]
193
+            $column = Column::getInstance()
194
+                            ->populate(
195
+                                array(
196
+                                    'name'       => $table ['column_name'],
197
+                                    'type'       => $this->convertTypeToSimple($table['data_type']),
198
+                                    'nullable'   => (is_string($table['is_nullable']) && strtolower($table['is_nullable']) != 'no'),
199
+                                    'max_length' => $table['max_length']
200 200
                                 )
201 201
                             );
202 202
 
203
-            $this->getTable ( $key , $schema )
204
-                 ->addColumn ( $column )
205
-                 ->setNamespace (
206
-                     $this->config->createClassNamespace ( $this->getTable ( $key , $schema ) )
203
+            $this->getTable($key, $schema)
204
+                 ->addColumn($column)
205
+                 ->setNamespace(
206
+                     $this->config->createClassNamespace($this->getTable($key, $schema))
207 207
                  );
208 208
         }
209 209
     }
@@ -213,7 +213,7 @@  discard block
 block discarded – undo
213 213
      *
214 214
      * @return int
215 215
      */
216
-    abstract public function getTotalTables ();
216
+    abstract public function getTotalTables();
217 217
 
218 218
     /**
219 219
      * Retorna o Nome da Sequence da tabela
@@ -223,33 +223,33 @@  discard block
 block discarded – undo
223 223
      *
224 224
      * @return string
225 225
      */
226
-    abstract public function getSequence ( $table , $column , $schema = 0 );
226
+    abstract public function getSequence($table, $column, $schema = 0);
227 227
 
228 228
     /**
229 229
      * @return array
230 230
      */
231
-    abstract public function getListConstrant ();
231
+    abstract public function getListConstrant();
232 232
 
233 233
     /**
234 234
      * @param string $str
235 235
      *
236 236
      * @return string
237 237
      */
238
-    protected function convertTypeToPhp ( $str )
238
+    protected function convertTypeToPhp($str)
239 239
     {
240
-        if ( isset( $this->dataTypesToPhp[ $str ] ) )
240
+        if (isset($this->dataTypesToPhp[$str]))
241 241
         {
242
-            return $this->dataTypesToPhp[ $str ];
242
+            return $this->dataTypesToPhp[$str];
243 243
         }
244 244
 
245 245
         return 'string';
246 246
     }
247 247
 
248
-    protected function convertTypeToSimple ( $str )
248
+    protected function convertTypeToSimple($str)
249 249
     {
250
-        if ( isset( $this->dataTypesToSimple[ $str ] ) )
250
+        if (isset($this->dataTypesToSimple[$str]))
251 251
         {
252
-            return $this->dataTypesToSimple[ $str ];
252
+            return $this->dataTypesToSimple[$str];
253 253
         }
254 254
 
255 255
         return 'string';
@@ -258,12 +258,12 @@  discard block
 block discarded – undo
258 258
     /**
259 259
      * @return string
260 260
      */
261
-    abstract public function getPDOString ();
261
+    abstract public function getPDOString();
262 262
 
263 263
     /**
264 264
      * @return string
265 265
      */
266
-    abstract public function getPDOSocketString ();
266
+    abstract public function getPDOSocketString();
267 267
 
268 268
     /**
269 269
      * @param     $nameTable
@@ -271,18 +271,18 @@  discard block
 block discarded – undo
271 271
      *
272 272
      * @return \Classes\Db\DbTable
273 273
      */
274
-    public function createTable ( $nameTable , $schema = 0 )
274
+    public function createTable($nameTable, $schema = 0)
275 275
     {
276
-        if ( ! isset( $this->objDbTables[ strtoupper($schema) ] ) )
276
+        if ( ! isset($this->objDbTables[strtoupper($schema)]))
277 277
         {
278
-            $this->objDbTables[ strtoupper($schema) ] = new DbTables();
278
+            $this->objDbTables[strtoupper($schema)] = new DbTables();
279 279
         }
280 280
 
281
-        $this->objDbTables[ strtoupper($schema) ][ trim ( $nameTable ) ] = DbTable::getInstance ()
282
-                                                                      ->populate (
283
-                                                                          array (
284
-                                                                              'table'    => $nameTable ,
285
-                                                                              'schema'   => $schema ,
281
+        $this->objDbTables[strtoupper($schema)][trim($nameTable)] = DbTable::getInstance()
282
+                                                                      ->populate(
283
+                                                                          array(
284
+                                                                              'table'    => $nameTable,
285
+                                                                              'schema'   => $schema,
286 286
                                                                               'database' => $this->database
287 287
                                                                           )
288 288
                                                                       );
@@ -295,24 +295,24 @@  discard block
 block discarded – undo
295 295
      *
296 296
      * @return \Classes\Db\Iterators\DbTables
297 297
      */
298
-    public function getTables ( $schema = 0 )
298
+    public function getTables($schema = 0)
299 299
     {
300
-        if ( ! isset( $this->objDbTables[ strtoupper($schema) ] ) )
300
+        if ( ! isset($this->objDbTables[strtoupper($schema)]))
301 301
         {
302
-            return array ();
302
+            return array();
303 303
         }
304 304
 
305
-        return $this->objDbTables[ strtoupper($schema) ];
305
+        return $this->objDbTables[strtoupper($schema)];
306 306
     }
307 307
 
308
-    public function getAllTables ()
308
+    public function getAllTables()
309 309
     {
310 310
         return $this->objDbTables;
311 311
     }
312 312
 
313
-    public function hasTables ()
313
+    public function hasTables()
314 314
     {
315
-        return ! empty( $this->objDbTables );
315
+        return ! empty($this->objDbTables);
316 316
     }
317 317
 
318 318
     /**
@@ -322,9 +322,9 @@  discard block
 block discarded – undo
322 322
      *
323 323
      * @return \Classes\Db\DbTable
324 324
      */
325
-    public function getTable ( $nameTable , $schema = 0 )
325
+    public function getTable($nameTable, $schema = 0)
326 326
     {
327
-        return $this->objDbTables[ strtoupper($schema) ][ trim ( $nameTable ) ];
327
+        return $this->objDbTables[strtoupper($schema)][trim($nameTable)];
328 328
     }
329 329
 
330 330
     /**
@@ -333,9 +333,9 @@  discard block
 block discarded – undo
333 333
      *
334 334
      * @return bool
335 335
      */
336
-    public function hasTable ( $nameTable , $schema = 0 )
336
+    public function hasTable($nameTable, $schema = 0)
337 337
     {
338
-        return isset( $this->objDbTables[ strtoupper($schema) ][ trim ( $nameTable ) ] );
338
+        return isset($this->objDbTables[strtoupper($schema)][trim($nameTable)]);
339 339
     }
340 340
 
341 341
     /**
@@ -343,66 +343,66 @@  discard block
 block discarded – undo
343 343
      *
344 344
      * @return array[]
345 345
      */
346
-    abstract public function getListColumns ();
346
+    abstract public function getListColumns();
347 347
 
348 348
     /**
349 349
      * Retorna um Array com nome das tabelas
350 350
      *
351 351
      * @return string[]
352 352
      */
353
-    abstract public function getListNameTable ();
353
+    abstract public function getListNameTable();
354 354
 
355 355
     /**
356 356
      * @param \Classes\AdapterConfig\AbstractAdapter $adapterConfig
357 357
      */
358
-    public function __construct ( AbstractAdapter $adapterConfig )
358
+    public function __construct(AbstractAdapter $adapterConfig)
359 359
     {
360 360
         $this->config = $adapterConfig;
361
-        $this->host = $adapterConfig->getHost ();
362
-        $this->database = $adapterConfig->getDatabase ();
363
-        $this->port = $adapterConfig->hasPort () ? $adapterConfig->getPort ()
361
+        $this->host = $adapterConfig->getHost();
362
+        $this->database = $adapterConfig->getDatabase();
363
+        $this->port = $adapterConfig->hasPort() ? $adapterConfig->getPort()
364 364
             : $this->port;
365
-        $this->username = $adapterConfig->getUser ();
366
-        $this->password = $adapterConfig->getPassword ();
367
-        $this->socket = $adapterConfig->getSocket ();
368
-        $this->tablesName = $adapterConfig->hasTablesName ()
369
-            ? $adapterConfig->getListTablesName () : '';
365
+        $this->username = $adapterConfig->getUser();
366
+        $this->password = $adapterConfig->getPassword();
367
+        $this->socket = $adapterConfig->getSocket();
368
+        $this->tablesName = $adapterConfig->hasTablesName()
369
+            ? $adapterConfig->getListTablesName() : '';
370 370
 
371 371
     }
372 372
 
373 373
     /**
374 374
      * Executa as consultas do banco de dados
375 375
      */
376
-    public function runDatabase ()
376
+    public function runDatabase()
377 377
     {
378
-        $this->parseTables ();
379
-        $this->parseConstrants ();
378
+        $this->parseTables();
379
+        $this->parseConstrants();
380 380
     }
381 381
 
382 382
     /**
383 383
      *
384 384
      * @return \PDO
385 385
      */
386
-    public function getPDO ()
386
+    public function getPDO()
387 387
     {
388
-        if ( is_null ( $this->_pdo ) )
388
+        if (is_null($this->_pdo))
389 389
         {
390
-            if ( ! empty( $this->socket ) )
390
+            if ( ! empty($this->socket))
391 391
             {
392
-                $pdoString = $this->getPDOSocketString ();
392
+                $pdoString = $this->getPDOSocketString();
393 393
             } else
394 394
             {
395
-                $pdoString = $this->getPDOString ();
395
+                $pdoString = $this->getPDOString();
396 396
             }
397 397
 
398 398
             try
399 399
             {
400
-                $this->_pdo = new \PDO (
401
-                    $pdoString , $this->username , $this->password
400
+                $this->_pdo = new \PDO(
401
+                    $pdoString, $this->username, $this->password
402 402
                 );
403
-            } catch ( \Exception $e )
403
+            } catch (\Exception $e)
404 404
             {
405
-                die ( "\033[0;31mPDO error: " . $e->getMessage () . "\033[0m\n" );
405
+                die ("\033[0;31mPDO error: " . $e->getMessage() . "\033[0m\n");
406 406
             }
407 407
         }
408 408
 
Please login to merge, or discard this patch.
build/Classes/templates/zf1/entity.php 2 patches
Spacing   +95 added lines, -95 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?= "<?php\n" ?>
2
-<?php $classNameModel = $objTables->getNamespace () . '_' . \Classes\Maker\AbstractMaker::getClassName ( $objTables->getName () ) ?>
3
-<?php $className = $objTables->getNamespace () . '_Entity_' . \Classes\Maker\AbstractMaker::getClassName (
4
-        $objTables->getName ()
2
+<?php $classNameModel = $objTables->getNamespace() . '_' . \Classes\Maker\AbstractMaker::getClassName($objTables->getName()) ?>
3
+<?php $className = $objTables->getNamespace() . '_Entity_' . \Classes\Maker\AbstractMaker::getClassName(
4
+        $objTables->getName()
5 5
     ) ?>
6 6
 
7 7
 /**
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
  *
10 10
  * <?= $this->config->last_modify . "\n" ?>
11 11
  *
12
- * @package <?= $objTables->getNamespace () . "\n" ?>
12
+ * @package <?= $objTables->getNamespace() . "\n" ?>
13 13
  * @subpackage Entity
14 14
  *
15 15
  * @author    <?= $this->config->author . "\n" ?>
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
                                                                         . "_" : "" ?>Model_<?= $objMakeFile->getFilesFixeds('parentClass')->getFileName() . "\n" ?>
29 29
 {
30 30
 
31
-<?php foreach ( $objTables->getColumns () as $column ): ?>
31
+<?php foreach ($objTables->getColumns() as $column): ?>
32 32
     /**
33
-     * Database constraint in the column <?= $column->getName () . "\n" ?>
33
+     * Database constraint in the column <?= $column->getName() . "\n" ?>
34 34
      *
35 35
      */
36
-    const <?= strtoupper ( $column->getName () ) ?> = '<?= $objTables->getName () ?>.<?= $column->getName () ?>';
36
+    const <?= strtoupper($column->getName()) ?> = '<?= $objTables->getName() ?>.<?= $column->getName() ?>';
37 37
 <?php endforeach; ?>
38 38
 
39 39
     /**
@@ -42,17 +42,17 @@  discard block
 block discarded – undo
42 42
      * @var string
43 43
      * @access protected
44 44
      */
45
-    protected $_tableClass = '<?= $objTables->getNamespace () ?>_DbTable_<?= \Classes\Maker\AbstractMaker::getClassName (
46
-    $objTables->getName ()
45
+    protected $_tableClass = '<?= $objTables->getNamespace() ?>_DbTable_<?= \Classes\Maker\AbstractMaker::getClassName(
46
+    $objTables->getName()
47 47
 ) ?>';
48 48
 
49 49
     /**
50 50
      * @see <?= $this->config->namespace ?>Model_EntityAbstract::$_columnsList
51 51
      */
52 52
     protected $_columnsList = array(
53
-<?php foreach ( $objTables->getColumns () as $column ): ?>
54
-        self::<?= strtoupper ( $column->getName () ) ?> => '<?= strtolower (
55
-            \Classes\Maker\AbstractMaker::getClassName ( $column->getName () )
53
+<?php foreach ($objTables->getColumns() as $column): ?>
54
+        self::<?= strtoupper($column->getName()) ?> => '<?= strtolower(
55
+            \Classes\Maker\AbstractMaker::getClassName($column->getName())
56 56
     ) ?>',
57 57
 <?php endforeach; ?>
58 58
     );
@@ -61,10 +61,10 @@  discard block
 block discarded – undo
61 61
      * @see <?= $this->config->namespace ?>Model_EntityAbstract::$_filters
62 62
      */
63 63
     protected $_filters = array(
64
-<?php foreach ( $objTables->getColumns () as $column ): ?>
64
+<?php foreach ($objTables->getColumns() as $column): ?>
65 65
 <?php
66 66
     $filters = null;
67
-    switch ( strtolower ( $column->getType () ) ) {
67
+    switch (strtolower($column->getType())) {
68 68
         case 'string':
69 69
             $filters = 'StripTags", "StringTrim';
70 70
             break;
@@ -78,15 +78,15 @@  discard block
 block discarded – undo
78 78
         case 'datetime':
79 79
             break;
80 80
         case 'boolean':
81
-                $filters='Int';
81
+                $filters = 'Int';
82 82
             break;
83 83
         default:
84
-            $filters = ucfirst ( $column->getType () );
84
+            $filters = ucfirst($column->getType());
85 85
             break;
86 86
     }
87 87
     ?>
88
-    '<?= $column->getName () ?>' => array (
89
-            <?= ( !empty( $filters ) ) ? "\"{$filters}\"\n" : null; ?>
88
+    '<?= $column->getName() ?>' => array (
89
+            <?= ( ! empty($filters)) ? "\"{$filters}\"\n" : null; ?>
90 90
         ),
91 91
 <?php endforeach; ?>
92 92
     );
@@ -95,13 +95,13 @@  discard block
 block discarded – undo
95 95
      * @see <?= $this->config->namespace ?>Model_EntityAbstract::$_validators
96 96
      */
97 97
     protected $_validators= array(
98
-<?php foreach ( $objTables->getColumns () as $column ): ?>
98
+<?php foreach ($objTables->getColumns() as $column): ?>
99 99
 <?php
100
-    $validators = array ();
100
+    $validators = array();
101 101
 
102
-    $validators[] = $column->isNullable () ? "'allowEmpty' => true" : "'NotEmpty'";
102
+    $validators[] = $column->isNullable() ? "'allowEmpty' => true" : "'NotEmpty'";
103 103
 
104
-    switch ( strtolower ( $column->getType () ) ) {
104
+    switch (strtolower($column->getType())) {
105 105
         case 'date':
106 106
             break;
107 107
         case 'timestamp':
@@ -109,8 +109,8 @@  discard block
 block discarded – undo
109 109
         case 'datetime':
110 110
             break;
111 111
         case 'string':
112
-            if ( $column->getMaxLength () ) {
113
-                $validators[] = "array( 'StringLength', array( 'max' => " . $column->getMaxLength () . " ) )";
112
+            if ($column->getMaxLength()) {
113
+                $validators[] = "array( 'StringLength', array( 'max' => " . $column->getMaxLength() . " ) )";
114 114
             }
115 115
 
116 116
             break;
@@ -118,18 +118,18 @@  discard block
 block discarded – undo
118 118
                 $validators[] = "'Int'";
119 119
             break;
120 120
         default:
121
-            $name         = ucfirst ( $column->getType () );
121
+            $name         = ucfirst($column->getType());
122 122
             $validators[] = "'$name'";
123 123
             break;
124 124
     }
125
-$validators = implode ( ", ", $validators ) ?>
126
-    '<?= $column->getName () ?>' => array (
127
-            <?= ( !empty( $validators ) ) ? "{$validators}\n" : null ?>
125
+$validators = implode(", ", $validators) ?>
126
+    '<?= $column->getName() ?>' => array (
127
+            <?= ( ! empty($validators)) ? "{$validators}\n" : null ?>
128 128
         ),
129 129
 <?php endforeach; ?>
130 130
     );
131 131
 
132
-<?php if ( $objTables->hasPrimaryKey () ): ?>
132
+<?php if ($objTables->hasPrimaryKey()): ?>
133 133
     /**
134 134
     * Nome da Primary Key
135 135
     *
@@ -137,171 +137,171 @@  discard block
 block discarded – undo
137 137
     * @access protected
138 138
     */
139 139
    protected $_primary = array(
140
-<?php foreach ( $objTables->getPrimarykeys () as $pks ) : ?>
141
-        '<?= $pks->getName () ?>',
140
+<?php foreach ($objTables->getPrimarykeys() as $pks) : ?>
141
+        '<?= $pks->getName() ?>',
142 142
 <?php endforeach ?>
143 143
     );
144 144
 <?php endif ?>
145 145
 
146
-<?php foreach ( $parents as $parent ): ?>
146
+<?php foreach ($parents as $parent): ?>
147 147
     /**
148
-     * Parent relation <?= \Classes\Maker\AbstractMaker::getClassName ( $parent[ 'table' ] ) . "\n" ?>
148
+     * Parent relation <?= \Classes\Maker\AbstractMaker::getClassName($parent['table']) . "\n" ?>
149 149
      *
150
-     * - CONSTRAINT in DB <?= $parent[ 'name' ] . "\n" ?>
150
+     * - CONSTRAINT in DB <?= $parent['name'] . "\n" ?>
151 151
      *
152
-     * @var <?= $parent[ 'variable' ] . "\n" ?>
152
+     * @var <?= $parent['variable'] . "\n" ?>
153 153
      */
154
-    protected $_parent_<?= $parent[ 'variable' ] ?>;
154
+    protected $_parent_<?= $parent['variable'] ?>;
155 155
 
156 156
 <?php endforeach; ?>
157
-<?php foreach ( $depends as $depend ): ?>
157
+<?php foreach ($depends as $depend): ?>
158 158
     /**
159
-     * Depends relation <?= \Classes\Maker\AbstractMaker::getClassName ( $depend[ 'table' ] ) . "\n" ?>
159
+     * Depends relation <?= \Classes\Maker\AbstractMaker::getClassName($depend['table']) . "\n" ?>
160 160
      *
161
-     * - CONSTRAINT in DB <?= $depend[ 'name' ] . "\n" ?>
161
+     * - CONSTRAINT in DB <?= $depend['name'] . "\n" ?>
162 162
      *
163
-     * @var <?= $depend[ 'variable' ] . "\n" ?>
163
+     * @var <?= $depend['variable'] . "\n" ?>
164 164
      */
165
-    protected $_depend_<?= $depend[ 'variable' ] ?>;
165
+    protected $_depend_<?= $depend['variable'] ?>;
166 166
 
167 167
 <?php endforeach; ?>
168
-<?php foreach ( $objTables->getColumns () as $column ): ?>
168
+<?php foreach ($objTables->getColumns() as $column): ?>
169 169
     /**
170 170
      *
171
-     * Sets column <?= $column->getName () . "\n" ?>
171
+     * Sets column <?= $column->getName() . "\n" ?>
172 172
      *
173
-<?php if ( $column->equalType ( 'date' ) ): ?>
173
+<?php if ($column->equalType('date')): ?>
174 174
      * Stored in ISO 8601 format.
175 175
      *
176
-     * @param string|Zend_Date $<?= $column->getName () . "\n" ?>
176
+     * @param string|Zend_Date $<?= $column->getName() . "\n" ?>
177 177
 <?php else: ?>
178
-     * @param <?= $column->getType () ?> $<?= $column->getName () . "\n" ?>
178
+     * @param <?= $column->getType() ?> $<?= $column->getName() . "\n" ?>
179 179
 <?php endif; ?>
180 180
      * @return <?= $className . "\n" ?>
181 181
      */
182
-    public function set<?= \Classes\Maker\AbstractMaker::getClassName ( $column->getName () ) ?>( $<?= $column->getName (
182
+    public function set<?= \Classes\Maker\AbstractMaker::getClassName($column->getName()) ?>( $<?= $column->getName(
183 183
     ) ?> )
184 184
     {
185
-<?php switch ( strtolower( $column->getType () ) ):
185
+<?php switch (strtolower($column->getType())):
186 186
         case 'timestamp':
187 187
         case 'date':
188 188
         case 'datetime':?>
189
-            if (! empty($<?= $column->getName () ?>))
189
+            if (! empty($<?= $column->getName() ?>))
190 190
             {
191
-                if (! $<?= $column->getName () ?> instanceof Zend_Date)
191
+                if (! $<?= $column->getName() ?> instanceof Zend_Date)
192 192
                 {
193
-                    $<?= $column->getName () ?> = new Zend_Date($<?= $column->getName () ?>);
193
+                    $<?= $column->getName() ?> = new Zend_Date($<?= $column->getName() ?>);
194 194
                 }
195
-<?php if( $column->equalType ( 'date' ) ): ?>
196
-                $<?= $column->getName () ?>->setOptions(array('format_type' => 'php'));
195
+<?php if ($column->equalType('date')): ?>
196
+                $<?= $column->getName() ?>->setOptions(array('format_type' => 'php'));
197 197
 <?php endif ?>
198
-<?php $format =  'Zend_Date::ISO_8601' ?>
199
-<?php if( $column->equalType ( 'date' ) ) { $format =  '\'Y-m-d\''; } ?>
200
-                $<?= $column->getName () ?> = $<?= $column->getName () ?>->toString( <?=$format?> );
198
+<?php $format = 'Zend_Date::ISO_8601' ?>
199
+<?php if ($column->equalType('date')) { $format = '\'Y-m-d\''; } ?>
200
+                $<?= $column->getName() ?> = $<?= $column->getName() ?>->toString( <?=$format?> );
201 201
             }
202
-<?php if($column->isNullable ()):?>
202
+<?php if ($column->isNullable()):?>
203 203
             else{
204
-                $<?= $column->getName () ?> = null;
204
+                $<?= $column->getName() ?> = null;
205 205
             }
206 206
 <?php endif ?>
207 207
 <?php break;
208 208
         case 'boolean':
209
-if(!$column->isNullable ()):?>
210
-            $<?= $column->getName () ?> = intval( $<?= $column->getName () ?> );
209
+if ( ! $column->isNullable()):?>
210
+            $<?= $column->getName() ?> = intval( $<?= $column->getName() ?> );
211 211
 <?php endif ?>
212 212
 <?php default: ?>
213
-<?php if(!$column->isNullable () && ($column->getType () != 'boolean')):?>
214
-            $<?= $column->getName () ?> = (<?= ucfirst ( $column->getType () ) ?>) $<?= $column->getName () ?> ;
213
+<?php if ( ! $column->isNullable() && ($column->getType() != 'boolean')):?>
214
+            $<?= $column->getName() ?> = (<?= ucfirst($column->getType()) ?>) $<?= $column->getName() ?> ;
215 215
 <?php endif ?>
216
-            $input = new Zend_Filter_Input($this->getFilters(), $this->getValidator(), array('<?= $column->getName () ?>'=>$<?= $column->getName () ?> ));
216
+            $input = new Zend_Filter_Input($this->getFilters(), $this->getValidator(), array('<?= $column->getName() ?>'=>$<?= $column->getName() ?> ));
217 217
 
218
-            if(!$input->isValid ('<?= $column->getName () ?>'))
218
+            if(!$input->isValid ('<?= $column->getName() ?>'))
219 219
             {
220 220
                 $errors =  $input->getMessages ();
221
-                foreach ( $errors['<?= $column->getName () ?>'] as $key => $value )
221
+                foreach ( $errors['<?= $column->getName() ?>'] as $key => $value )
222 222
                 {
223
-                    throw new <?= $this->config->namespace ? $this->config->namespace . "_" : "" ?>Model_EntityException ( '<?= $column->getName () ?> - ' . $value );
223
+                    throw new <?= $this->config->namespace ? $this->config->namespace . "_" : "" ?>Model_EntityException ( '<?= $column->getName() ?> - ' . $value );
224 224
                 }
225 225
             }
226 226
 <?php break ?>
227 227
 <?php endswitch ?>
228 228
 
229
-        $this-><?= $column->getName () ?>  = $<?= $column->getName () ?> ;
229
+        $this-><?= $column->getName() ?>  = $<?= $column->getName() ?> ;
230 230
         return $this;
231 231
     }
232 232
 
233 233
     /**
234
-     * Gets column <?= $column->getName () . "\n" ?>
234
+     * Gets column <?= $column->getName() . "\n" ?>
235 235
      *
236
-<?php if ( $column->equalType ( 'date' ) or $column->equalType ( 'datetime' ) or  $column->equalType ( 'timestamp' ) ): ?>
236
+<?php if ($column->equalType('date') or $column->equalType('datetime') or $column->equalType('timestamp')): ?>
237 237
      * @param boolean $returnZendDate
238 238
      * @return Zend_Date|null|string Zend_Date representation of this datetime if enabled, or ISO 8601 string if not
239 239
 <?php else: ?>
240
-     * @return <?= $column->getType () . "\n" ?>
240
+     * @return <?= $column->getType() . "\n" ?>
241 241
 <?php endif; ?>
242 242
      */
243
-    public function get<?= \Classes\Maker\AbstractMaker::getClassName (
244
-        $column->getName ()
245
-    ) ?>(<?php if ( $column->equalType ( 'date' ) or $column->equalType ( 'datetime' ) or  $column->equalType ( 'timestamp' ) ): ?>$format = false <?php endif; ?>)
243
+    public function get<?= \Classes\Maker\AbstractMaker::getClassName(
244
+        $column->getName()
245
+    ) ?>(<?php if ($column->equalType('date') or $column->equalType('datetime') or $column->equalType('timestamp')): ?>$format = false <?php endif; ?>)
246 246
     {
247
-<?php switch ( strtolower( $column->getType () ) ):
247
+<?php switch (strtolower($column->getType())):
248 248
         case 'timestamp':
249 249
         case 'date':
250 250
         case 'datetime':?>
251 251
         if ($format)
252 252
         {
253
-            if ($this->_data['<?= $column->getName () ?>'] === null)
253
+            if ($this->_data['<?= $column->getName() ?>'] === null)
254 254
             {
255 255
                 return null;
256 256
             }
257 257
 
258
-            $objDate = new Zend_Date($this-><?= $column->getName () ?>, $format );
258
+            $objDate = new Zend_Date($this-><?= $column->getName() ?>, $format );
259 259
 
260 260
             return $objDate->toString($format);
261 261
         }
262 262
 <?php break ?>
263 263
 <?php endswitch ?>
264
-     return $this-><?= $column->getName () ?>;
264
+     return $this-><?= $column->getName() ?>;
265 265
     }
266 266
 
267 267
 <?php endforeach; ?>
268
-<?php foreach ( $parents as $parent ): ?>
268
+<?php foreach ($parents as $parent): ?>
269 269
     /**
270
-     * Gets parent <?= $parent[ 'table' ] . "\n" ?>
270
+     * Gets parent <?= $parent['table'] . "\n" ?>
271 271
      *
272
-     * @return <?= $parent[ 'class' ] . "\n" ?>
272
+     * @return <?= $parent['class'] . "\n" ?>
273 273
      */
274
-    public function get<?= $parent[ 'function' ] ?>()
274
+    public function get<?= $parent['function'] ?>()
275 275
     {
276
-        if ($this->_parent_<?= $parent[ 'variable' ] ?> === null)
276
+        if ($this->_parent_<?= $parent['variable'] ?> === null)
277 277
         {
278
-            $this->_parent_<?= $parent[ 'variable' ] ?> = $this->findParentRow('<?= $objTables->getNamespace (
279
-    ) ?>_DbTable_<?= \Classes\Maker\AbstractMaker::getClassName (
280
-        $parent[ 'table' ]
281
-    ) ?>', '<?= \Classes\Maker\AbstractMaker::getClassName ( $parent[ 'variable' ] ) ?>');
278
+            $this->_parent_<?= $parent['variable'] ?> = $this->findParentRow('<?= $objTables->getNamespace(
279
+    ) ?>_DbTable_<?= \Classes\Maker\AbstractMaker::getClassName(
280
+        $parent['table']
281
+    ) ?>', '<?= \Classes\Maker\AbstractMaker::getClassName($parent['variable']) ?>');
282 282
         }
283 283
 
284
-        return $this->_parent_<?= $parent[ 'variable' ] ?>;
284
+        return $this->_parent_<?= $parent['variable'] ?>;
285 285
     }
286 286
 
287 287
 <?php endforeach; ?>
288 288
 
289 289
 
290
-<?php foreach ( $depends as $depend ): ?>
290
+<?php foreach ($depends as $depend): ?>
291 291
     /**
292
-     * Gets dependent <?= $depend[ 'table' ] . "\n" ?>
292
+     * Gets dependent <?= $depend['table'] . "\n" ?>
293 293
      *
294
-     * @return <?= $depend[ 'class' ] . "\n" ?>
294
+     * @return <?= $depend['class'] . "\n" ?>
295 295
      */
296
-    public function get<?= $depend[ 'function' ] ?>()
296
+    public function get<?= $depend['function'] ?>()
297 297
     {
298
-        if ($this->_depend_<?= $depend[ 'variable' ] ?> === null)
298
+        if ($this->_depend_<?= $depend['variable'] ?> === null)
299 299
         {
300
-            $this->_depend_<?= $depend[ 'variable' ] ?> = $this->findDependentRowset('<?= $objTables->getNamespace (
301
-    ) ?>_DbTable_<?= \Classes\Maker\AbstractMaker::getClassName ( $depend[ 'table' ] ) ?>');
300
+            $this->_depend_<?= $depend['variable'] ?> = $this->findDependentRowset('<?= $objTables->getNamespace(
301
+    ) ?>_DbTable_<?= \Classes\Maker\AbstractMaker::getClassName($depend['table']) ?>');
302 302
         }
303 303
 
304
-        return $this->_depend_<?= $depend[ 'variable' ] ?>;
304
+        return $this->_depend_<?= $depend['variable'] ?>;
305 305
     }
306 306
 
307 307
 <?php endforeach; ?>
Please login to merge, or discard this patch.
Braces   +10 added lines, -4 removed lines patch added patch discarded remove patch
@@ -174,9 +174,12 @@  discard block
 block discarded – undo
174 174
      * Stored in ISO 8601 format.
175 175
      *
176 176
      * @param string|Zend_Date $<?= $column->getName () . "\n" ?>
177
-<?php else: ?>
177
+<?php else {
178
+    : ?>
178 179
      * @param <?= $column->getType () ?> $<?= $column->getName () . "\n" ?>
179
-<?php endif; ?>
180
+<?php endif;
181
+}
182
+?>
180 183
      * @return <?= $className . "\n" ?>
181 184
      */
182 185
     public function set<?= \Classes\Maker\AbstractMaker::getClassName ( $column->getName () ) ?>( $<?= $column->getName (
@@ -236,9 +239,12 @@  discard block
 block discarded – undo
236 239
 <?php if ( $column->equalType ( 'date' ) or $column->equalType ( 'datetime' ) or  $column->equalType ( 'timestamp' ) ): ?>
237 240
      * @param boolean $returnZendDate
238 241
      * @return Zend_Date|null|string Zend_Date representation of this datetime if enabled, or ISO 8601 string if not
239
-<?php else: ?>
242
+<?php else {
243
+    : ?>
240 244
      * @return <?= $column->getType () . "\n" ?>
241
-<?php endif; ?>
245
+<?php endif;
246
+}
247
+?>
242 248
      */
243 249
     public function get<?= \Classes\Maker\AbstractMaker::getClassName (
244 250
         $column->getName ()
Please login to merge, or discard this patch.
build/Classes/templates/zf1/entity_abstract.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -3,19 +3,19 @@  discard block
 block discarded – undo
3 3
 /**
4 4
  * Application Entity
5 5
  *
6
- * <?=$this->config->last_modify."\n"?>
6
+ * <?=$this->config->last_modify . "\n"?>
7 7
  *
8 8
  * @package   <?=$this->config->namespace?>Model
9 9
  * @subpackage Model
10
- * @author    <?=$this->config->author."\n"?>
10
+ * @author    <?=$this->config->author . "\n"?>
11 11
  *
12
- * @copyright <?=$this->config->copyright."\n"?>
13
- * @license   <?=$this->config->license."\n"?>
14
- * @link      <?=$this->config->link."\n"?>
15
- * @version   <?=$this->config->version."\n"?>
12
+ * @copyright <?=$this->config->copyright . "\n"?>
13
+ * @license   <?=$this->config->license . "\n"?>
14
+ * @link      <?=$this->config->link . "\n"?>
15
+ * @version   <?=$this->config->version . "\n"?>
16 16
  */
17 17
 
18
-abstract class <?=$this->config->namespace?$this->config->namespace."_":""?>Model_EntityAbstract extends Zend_Db_Table_Row_Abstract
18
+abstract class <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_EntityAbstract extends Zend_Db_Table_Row_Abstract
19 19
 {
20 20
 
21 21
     /**
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
 
76 76
     /**
77 77
     * @param array $data
78
-    * @return <?=$this->config->namespace?$this->config->namespace."_":""?>Model_EntityAbstract
78
+    * @return <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_EntityAbstract
79 79
     */
80 80
     public static function getIntance($data = array())
81 81
     {
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
      * Array com values dos set deste model.
218 218
      *
219 219
      * @param array $data
220
-     * @return <?=$this->config->namespace?$this->config->namespace."_":""?>Model_EntityAbstract
220
+     * @return <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_EntityAbstract
221 221
      */
222 222
     public function populate ( array $data )
223 223
     {
@@ -242,7 +242,7 @@  discard block
 block discarded – undo
242 242
     /**
243 243
      * Retorna o nome da coluna da primary key
244 244
      *
245
-     * @see <?=$this->config->namespace?$this->config->namespace."_":""?>Model_DbTable_TableAbstract::getPrimaryKeyName()
245
+     * @see <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_DbTable_TableAbstract::getPrimaryKeyName()
246 246
      * @return string|array The name or array of names which form the primary key
247 247
      */
248 248
     public function getPrimaryKeyName()
@@ -253,7 +253,7 @@  discard block
 block discarded – undo
253 253
     /**
254 254
      * @param int $primarykey
255 255
      *
256
-     * @return <?=$this->config->namespace?$this->config->namespace."_":""?>Model_EntityAbstract
256
+     * @return <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_EntityAbstract
257 257
      */
258 258
     public function find ( $primarykey )
259 259
     {
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
     /**
268 268
      * @see Zend_Db_Table_Rowset_Abstract::fetchAll
269 269
      *
270
-     * @return <?=$this->config->namespace?$this->config->namespace."_":""?>Model_EntityAbstract[]
270
+     * @return <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_EntityAbstract[]
271 271
      */
272 272
     public function fetchAll ( $where = null , $order = null , $count = null , $offset = null )
273 273
     {
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
      * Retorna o objeto pela primary key
279 279
      *
280 280
      * @param int|array $primary_key
281
-     * @return <?=$this->config->namespace?$this->config->namespace."_":""?>Model_EntityAbstract
281
+     * @return <?=$this->config->namespace ? $this->config->namespace . "_" : ""?>Model_EntityAbstract
282 282
      */
283 283
     public static function retrieve ( $primarykey )
284 284
     {
Please login to merge, or discard this patch.
build/Classes/AdaptersDriver/Dblib.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@
 block discarded – undo
10 10
  */
11 11
 class Dblib extends Mssql
12 12
 {
13
-    public function getPDOString ()
13
+    public function getPDOString()
14 14
     {
15
-        return sprintf (
16
-            "dblib:host=%s;dbname=%s" ,
17
-            $this->getHost () ,
15
+        return sprintf(
16
+            "dblib:host=%s;dbname=%s",
17
+            $this->getHost(),
18 18
             $this->database
19 19
         );
20 20
     }
Please login to merge, or discard this patch.
build/Classes/AdaptersDriver/Mssql.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -178,14 +178,14 @@  discard block
 block discarded – undo
178 178
             $strSchema = implode ( "', '" , $this->schema );
179 179
 
180 180
             $this->totalTables = $this->getPDO ()
181
-                                      ->query (
182
-                                          "SELECT COUNT(table_name)  AS total
181
+                                        ->query (
182
+                                            "SELECT COUNT(table_name)  AS total
183 183
              FROM {$this->database}.information_schema.tables
184 184
              WHERE
185 185
               table_type = 'BASE TABLE'
186 186
               AND table_schema IN ( '" . $strSchema . "' ) $sqlTables"
187
-                                      )
188
-                                      ->fetchColumn ();
187
+                                        )
188
+                                        ->fetchColumn ();
189 189
         }
190 190
 
191 191
         return (int) $this->totalTables;
@@ -194,10 +194,10 @@  discard block
 block discarded – undo
194 194
     public function getSequence ( $table , $column , $schema = 0 )
195 195
     {
196 196
         $return = $this->getPDO ()
197
-                       ->query (
198
-                           "SELECT is_identity FROM sys.columns WHERE object_id = object_id('{$schema}.{$table}')  AND name = '{$column}';"
199
-                       )
200
-                       ->fetchColumn();
197
+                        ->query (
198
+                            "SELECT is_identity FROM sys.columns WHERE object_id = object_id('{$schema}.{$table}')  AND name = '{$column}';"
199
+                        )
200
+                        ->fetchColumn();
201 201
 
202 202
         if ( ! $return )
203 203
         {
Please login to merge, or discard this patch.
Spacing   +49 added lines, -49 removed lines patch added patch discarded remove patch
@@ -24,13 +24,13 @@  discard block
 block discarded – undo
24 24
      */
25 25
     protected $port;
26 26
 
27
-    protected $schema = array ( 'public' );
27
+    protected $schema = array('public');
28 28
 
29
-    public function __construct ( AbstractAdapter $adapterConfig )
29
+    public function __construct(AbstractAdapter $adapterConfig)
30 30
     {
31
-        parent::__construct ( $adapterConfig );
32
-        if ( $adapterConfig->hasSchemas () ) {
33
-            $this->schema = $adapterConfig->getSchemas ();
31
+        parent::__construct($adapterConfig);
32
+        if ($adapterConfig->hasSchemas()) {
33
+            $this->schema = $adapterConfig->getSchemas();
34 34
         }
35 35
 
36 36
     }
@@ -38,33 +38,33 @@  discard block
 block discarded – undo
38 38
     /**
39 39
      * @inheritDoc
40 40
      */
41
-    protected function convertTypeToSimple ( $str )
41
+    protected function convertTypeToSimple($str)
42 42
     {
43
-        if ( preg_match ( '/(tinyint|bit)/' , $str ) )
43
+        if (preg_match('/(tinyint|bit)/', $str))
44 44
         {
45 45
             $res = 'boolean';
46
-        } elseif ( preg_match ( '/(date|time|text|binary|char|xml|uniqueidentifier)/' , $str ) )
46
+        } elseif (preg_match('/(date|time|text|binary|char|xml|uniqueidentifier)/', $str))
47 47
         {
48 48
             $res = 'string';
49
-        } elseif ( preg_match ( '/(decimal|numeric|real|float|money)/' , $str ) )
49
+        } elseif (preg_match('/(decimal|numeric|real|float|money)/', $str))
50 50
         {
51 51
             $res = 'float';
52
-        } elseif ( preg_match ( '#^(?:tiny|small|medium|long|big|var)?(\w+)(?:\(\d+\))?(?:\s\w+)*$#' , $str , $matches ) )
52
+        } elseif (preg_match('#^(?:tiny|small|medium|long|big|var)?(\w+)(?:\(\d+\))?(?:\s\w+)*$#', $str, $matches))
53 53
         {
54
-            $res = $matches[ 1 ];
54
+            $res = $matches[1];
55 55
         }
56 56
 
57 57
         return $res;
58 58
     }
59 59
 
60
-    protected function getHost(){
60
+    protected function getHost() {
61 61
         $host = $this->host;
62
-        if (!empty($this->port)) {
62
+        if ( ! empty($this->port)) {
63 63
             $seperator = ':';
64 64
             if (strtoupper(substr(PHP_OS, 0, 3)) === 'WIN') {
65 65
                 $seperator = ',';
66 66
             }
67
-            $host .=  $seperator . $this->port;
67
+            $host .= $seperator . $this->port;
68 68
             unset($this->port);
69 69
         }
70 70
 
@@ -75,11 +75,11 @@  discard block
 block discarded – undo
75 75
      * @inheritDoc
76 76
      * @return string
77 77
      */
78
-    public function getPDOString ()
78
+    public function getPDOString()
79 79
     {
80
-        return sprintf (
81
-            "mssql:host=%s;dbname=%s" ,
82
-            $this->getHost() ,
80
+        return sprintf(
81
+            "mssql:host=%s;dbname=%s",
82
+            $this->getHost(),
83 83
             $this->database
84 84
         );
85 85
     }
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      * @inheritDoc
89 89
      * @return string
90 90
      */
91
-    public function getPDOSocketString ()
91
+    public function getPDOSocketString()
92 92
     {
93 93
         // TODO: implement here
94 94
         return "";
@@ -98,18 +98,18 @@  discard block
 block discarded – undo
98 98
      * @inheritDoc
99 99
      * @return string[]
100 100
      */
101
-    public function getListNameTable ()
101
+    public function getListNameTable()
102 102
     {
103
-        if ( empty( $this->tableList ) )
103
+        if (empty($this->tableList))
104 104
         {
105 105
 
106
-            $sqlTables = ! empty( $this->tablesName )
106
+            $sqlTables = ! empty($this->tablesName)
107 107
                 ? "AND table_name IN ( $this->tablesName )" : '';
108 108
 
109
-            $strSchema = implode ( "', '" , $this->schema );
109
+            $strSchema = implode("', '", $this->schema);
110 110
 
111
-            $this->tableList = $this->getPDO ()
112
-                                    ->query (
111
+            $this->tableList = $this->getPDO()
112
+                                    ->query(
113 113
                                         "SELECT table_schema,
114 114
               table_name
115 115
              FROM {$this->database}.information_schema.tables
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                table_name
122 122
               ASC"
123 123
                                     )
124
-                                    ->fetchAll ();
124
+                                    ->fetchAll();
125 125
         }
126 126
 
127 127
         return $this->tableList;
@@ -138,14 +138,14 @@  discard block
 block discarded – undo
138 138
      *
139 139
      * @return array
140 140
      */
141
-    public function getListColumns ()
141
+    public function getListColumns()
142 142
     {
143
-        $sqlTables = ! empty( $this->tablesName )
143
+        $sqlTables = ! empty($this->tablesName)
144 144
             ? "AND c.table_name IN ( $this->tablesName )" : '';
145
-        $strSchema = implode ( "', '" , $this->schema );
145
+        $strSchema = implode("', '", $this->schema);
146 146
 
147
-        return $this->getPDO ()
148
-                    ->query (
147
+        return $this->getPDO()
148
+                    ->query(
149 149
                         "SELECT distinct
150 150
 	c.table_schema,
151 151
 	c.table_name,
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 		 $sqlTables and  c.table_schema IN ('$strSchema')
161 161
 		order by c.table_name asc"
162 162
                     )
163
-                    ->fetchAll ( \PDO::FETCH_ASSOC );
163
+                    ->fetchAll(\PDO::FETCH_ASSOC);
164 164
     }
165 165
 
166 166
     /**
@@ -168,38 +168,38 @@  discard block
 block discarded – undo
168 168
      *
169 169
      * @return int
170 170
      */
171
-    public function getTotalTables ()
171
+    public function getTotalTables()
172 172
     {
173
-        if ( empty( $this->totalTables ) )
173
+        if (empty($this->totalTables))
174 174
         {
175
-            $sqlTables = ! empty( $this->tablesName )
175
+            $sqlTables = ! empty($this->tablesName)
176 176
                 ? "AND table_name IN ( $this->tablesName )" : '';
177 177
 
178
-            $strSchema = implode ( "', '" , $this->schema );
178
+            $strSchema = implode("', '", $this->schema);
179 179
 
180
-            $this->totalTables = $this->getPDO ()
181
-                                      ->query (
180
+            $this->totalTables = $this->getPDO()
181
+                                      ->query(
182 182
                                           "SELECT COUNT(table_name)  AS total
183 183
              FROM {$this->database}.information_schema.tables
184 184
              WHERE
185 185
               table_type = 'BASE TABLE'
186 186
               AND table_schema IN ( '" . $strSchema . "' ) $sqlTables"
187 187
                                       )
188
-                                      ->fetchColumn ();
188
+                                      ->fetchColumn();
189 189
         }
190 190
 
191 191
         return (int) $this->totalTables;
192 192
     }
193 193
 
194
-    public function getSequence ( $table , $column , $schema = 0 )
194
+    public function getSequence($table, $column, $schema = 0)
195 195
     {
196
-        $return = $this->getPDO ()
197
-                       ->query (
196
+        $return = $this->getPDO()
197
+                       ->query(
198 198
                            "SELECT is_identity FROM sys.columns WHERE object_id = object_id('{$schema}.{$table}')  AND name = '{$column}';"
199 199
                        )
200 200
                        ->fetchColumn();
201 201
 
202
-        if ( ! $return )
202
+        if ( ! $return)
203 203
         {
204 204
             return;
205 205
         }
@@ -207,14 +207,14 @@  discard block
 block discarded – undo
207 207
         return "{$table}_{$column}_seq";
208 208
     }
209 209
 
210
-    public function getListConstrant ()
210
+    public function getListConstrant()
211 211
     {
212
-        $sqlTables = ! empty( $this->tablesName )
212
+        $sqlTables = ! empty($this->tablesName)
213 213
             ? "AND tc.table_name IN ( $this->tablesName )" : '';
214
-        $strSchema = implode ( "', '" , $this->schema );
214
+        $strSchema = implode("', '", $this->schema);
215 215
 
216
-        return $this->getPDO ()
217
-                    ->query (
216
+        return $this->getPDO()
217
+                    ->query(
218 218
                         "SELECT distinct
219 219
                 tc.constraint_type,
220 220
                 tc.constraint_name,
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
                         AND tc.constraint_schema = ccu.constraint_schema
237 237
                     ORDER by tc.table_schema"
238 238
                     )
239
-                    ->fetchAll ( \PDO::FETCH_ASSOC );
239
+                    ->fetchAll(\PDO::FETCH_ASSOC);
240 240
     }
241 241
 
242 242
 }
Please login to merge, or discard this patch.
build/Classes/Maker/AbstractMaker.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -10,13 +10,13 @@  discard block
 block discarded – undo
10 10
      *
11 11
      * @param $dir
12 12
      */
13
-    public static function makeDir ( $dir )
13
+    public static function makeDir($dir)
14 14
     {
15
-        if ( !is_dir ( $dir ) )
15
+        if ( ! is_dir($dir))
16 16
         {
17
-            if ( !@mkdir ( $dir, 0755, true ) )
17
+            if ( ! @mkdir($dir, 0755, true))
18 18
             {
19
-                die( "\033[0;31mError: could not create directory $dir\033[0m\n" );
19
+                die("\033[0;31mError: could not create directory $dir\033[0m\n");
20 20
             }
21 21
         }
22 22
     }
@@ -28,16 +28,16 @@  discard block
 block discarded – undo
28 28
      *
29 29
      * @return boolean
30 30
      */
31
-    public static function makeSourcer ( $nameFile, $tplContent, $overwrite = false )
31
+    public static function makeSourcer($nameFile, $tplContent, $overwrite = false)
32 32
     {
33
-        if ( !$overwrite && is_file ( $nameFile ) )
33
+        if ( ! $overwrite && is_file($nameFile))
34 34
         {
35 35
             return false;
36 36
         }
37 37
 
38
-        if ( !file_put_contents ( $nameFile, $tplContent ) )
38
+        if ( ! file_put_contents($nameFile, $tplContent))
39 39
         {
40
-            die( "\033[0;31mError: could not write model file $nameFile.\033[0m\n" );
40
+            die("\033[0;31mError: could not write model file $nameFile.\033[0m\n");
41 41
         }
42 42
 
43 43
         return true;
@@ -48,24 +48,24 @@  discard block
 block discarded – undo
48 48
      *
49 49
      * @return string
50 50
      */
51
-    public static function getClassName ( $str )
51
+    public static function getClassName($str)
52 52
     {
53 53
         $temp = '';
54
-        foreach ( explode ( self::SEPARETOR, $str ) as $part )
54
+        foreach (explode(self::SEPARETOR, $str) as $part)
55 55
         {
56
-            $temp .= ucfirst ( strtolower( $part ) );
56
+            $temp .= ucfirst(strtolower($part));
57 57
         }
58 58
 
59 59
         return $temp;
60 60
     }
61 61
 
62
-    protected function getParsedTplContents ( $filePath, $vars = array () )
62
+    protected function getParsedTplContents($filePath, $vars = array())
63 63
     {
64
-        extract ( $vars );
65
-        ob_start ();
64
+        extract($vars);
65
+        ob_start();
66 66
         require $filePath;
67
-        $data = ob_get_contents ();
68
-        ob_end_clean ();
67
+        $data = ob_get_contents();
68
+        ob_end_clean();
69 69
 
70 70
         return $data;
71 71
     }
Please login to merge, or discard this patch.