Passed
Push — master ( 1c1b55...620847 )
by Fran
02:52
created
src/base/types/traits/OutputTrait.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
                 $this->setStatusCode(Template::STATUS_OK);
122 122
                 break;
123 123
             default:
124
-                $this->setStatusCode('HTTP/1.0 ' .($status ?: 200));
124
+                $this->setStatusCode('HTTP/1.0 '.($status ?: 200));
125 125
                 break;
126 126
         }
127 127
         return $this;
@@ -135,11 +135,11 @@  discard block
 block discarded – undo
135 135
     private function setReponseHeaders($contentType = 'text/html', array $cookies = array())
136 136
     {
137 137
         $powered = Config::getParam('poweredBy', 'PSFS');
138
-        header('X-Powered-By: ' . $powered);
138
+        header('X-Powered-By: '.$powered);
139 139
         ResponseHelper::setStatusHeader($this->getStatusCode());
140 140
         ResponseHelper::setAuthHeaders($this->isPublicZone());
141 141
         ResponseHelper::setCookieHeaders($cookies);
142
-        header('Content-type: ' . $contentType);
142
+        header('Content-type: '.$contentType);
143 143
 
144 144
     }
145 145
 
@@ -152,20 +152,20 @@  discard block
 block discarded – undo
152 152
      */
153 153
     public function output($output = '', $contentType = 'text/html', array $cookies = array())
154 154
     {
155
-        if(!self::isTest()) {
155
+        if (!self::isTest()) {
156 156
             Logger::log('Start output response');
157 157
             ob_start();
158 158
             $this->setReponseHeaders($contentType, $cookies);
159
-            header('Content-length: ' . strlen($output));
160
-            header('CRC: ' . crc32($output));
159
+            header('Content-length: '.strlen($output));
160
+            header('CRC: '.crc32($output));
161 161
 
162 162
             $needCache = Cache::needCache();
163 163
             $cache = Cache::getInstance();
164 164
             list($path, $cacheDataName) = $cache->getRequestCacheHash();
165 165
             if (null !== $cacheDataName && false !== $needCache && $this->getStatusCode() === Template::STATUS_OK) {
166 166
                 Logger::log('Saving output response into cache');
167
-                $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName, $output);
168
-                $cache->storeData('json' . DIRECTORY_SEPARATOR . $path . $cacheDataName . '.headers', headers_list(), Cache::JSON);
167
+                $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName, $output);
168
+                $cache->storeData('json'.DIRECTORY_SEPARATOR.$path.$cacheDataName.'.headers', headers_list(), Cache::JSON);
169 169
             } elseif (Request::getInstance()->getMethod() !== 'GET') {
170 170
                 $cache->flushCache();
171 171
             }
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
             ob_end_clean();
176 176
             Logger::log('End output response');
177 177
             $this->closeRender();
178
-        } else {
178
+        }else {
179 179
             return $output;
180 180
         }
181 181
     }
@@ -188,11 +188,11 @@  discard block
 block discarded – undo
188 188
         Logger::log('Close template render');
189 189
         $uri = Request::requestUri();
190 190
         Security::getInstance()->setSessionKey('lastRequest', array(
191
-            'url' => Request::getInstance()->getRootUrl() . $uri,
191
+            'url' => Request::getInstance()->getRootUrl().$uri,
192 192
             'ts' => microtime(true),
193 193
         ));
194 194
         Security::getInstance()->updateSession();
195
-        Logger::log('End request: ' . $uri, LOG_INFO);
195
+        Logger::log('End request: '.$uri, LOG_INFO);
196 196
         exit;
197 197
     }
198 198
 
@@ -230,17 +230,17 @@  discard block
 block discarded – undo
230 230
         /////////////////////////////////////////////////////////////
231 231
         // Date in the past sets the value to already have been expired.
232 232
         header('Expires: Sat, 26 Jul 1997 05:00:00 GMT');
233
-        header('Last-Modified: ' . gmdate('D, d M Y H:i:s') . ' GMT');
233
+        header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
234 234
         header('Cache-Control: no-store, no-cache, must-revalidate'); // HTTP/1.1
235 235
         header('Cache-Control: pre-check=0, post-check=0, max-age=0'); // HTTP/1.1
236 236
         header('Pragma: no-cache');
237 237
         header('Expires: 0');
238 238
         header('Content-Transfer-Encoding: binary');
239
-        header('Content-type: ' . $content);
240
-        header('Content-length: ' . strlen($data));
241
-        header('Content-Disposition: attachment; filename="' . $filename . '"');
239
+        header('Content-type: '.$content);
240
+        header('Content-length: '.strlen($data));
241
+        header('Content-Disposition: attachment; filename="'.$filename.'"');
242 242
         header('Access-Control-Expose-Headers: Filename');
243
-        header('Filename: ' . $filename);
243
+        header('Filename: '.$filename);
244 244
         echo $data;
245 245
         ob_flush();
246 246
         ob_end_clean();
Please login to merge, or discard this patch.
src/base/types/Api.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -82,20 +82,20 @@  discard block
 block discarded – undo
82 82
     public function init()
83 83
     {
84 84
         parent::init();
85
-        Logger::log(static::class . ' init', LOG_DEBUG);
85
+        Logger::log(static::class.' init', LOG_DEBUG);
86 86
         $this->domain = $this->getDomain();
87 87
         $this->hydrateRequestData();
88 88
         $this->hydrateOrders();
89
-        if($this instanceof CustomApi === false) {
89
+        if ($this instanceof CustomApi === false) {
90 90
             $this->createConnection($this->getTableMap());
91 91
         }
92 92
         $this->checkFieldType();
93 93
         $this->setLoaded(true);
94
-        Logger::log(static::class . ' loaded', LOG_DEBUG);
94
+        Logger::log(static::class.' loaded', LOG_DEBUG);
95 95
     }
96 96
 
97 97
     private function checkActions($method) {
98
-        switch($method) {
98
+        switch ($method) {
99 99
             default:
100 100
             case 'modelList': $this->action = self::API_ACTION_LIST; break;
101 101
             case 'get': $this->action = self::API_ACTION_GET; break;
@@ -112,7 +112,7 @@  discard block
 block discarded – undo
112 112
     protected function hydrateOrders()
113 113
     {
114 114
         if (count($this->query)) {
115
-            Logger::log(static::class . ' gathering query string', LOG_DEBUG);
115
+            Logger::log(static::class.' gathering query string', LOG_DEBUG);
116 116
             foreach ($this->query as $key => $value) {
117 117
                 if ($key === self::API_ORDER_FIELD && is_array($value)) {
118 118
                     foreach ($value as $field => $direction) {
@@ -129,10 +129,10 @@  discard block
 block discarded – undo
129 129
      */
130 130
     protected function extractPagination()
131 131
     {
132
-        Logger::log(static::class . ' extract pagination start', LOG_DEBUG);
132
+        Logger::log(static::class.' extract pagination start', LOG_DEBUG);
133 133
         $page = array_key_exists(self::API_PAGE_FIELD, $this->query) ? $this->query[self::API_PAGE_FIELD] : 1;
134 134
         $limit = array_key_exists(self::API_LIMIT_FIELD, $this->query) ? $this->query[self::API_LIMIT_FIELD] : 100;
135
-        Logger::log(static::class . ' extract pagination end', LOG_DEBUG);
135
+        Logger::log(static::class.' extract pagination end', LOG_DEBUG);
136 136
         return array($page, (int)$limit);
137 137
     }
138 138
 
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
      */
144 144
     private function addOrders(ModelCriteria &$query)
145 145
     {
146
-        Logger::log(static::class . ' extract orders start ', LOG_DEBUG);
146
+        Logger::log(static::class.' extract orders start ', LOG_DEBUG);
147 147
         $orderAdded = FALSE;
148 148
         $tableMap = $this->getTableMap();
149 149
         foreach ($this->order->getOrders() as $field => $direction) {
@@ -151,18 +151,18 @@  discard block
 block discarded – undo
151 151
                 $orderAdded = TRUE;
152 152
                 if ($direction === Order::ASC) {
153 153
                     $query->addAscendingOrderByColumn($column->getPhpName());
154
-                } else {
154
+                }else {
155 155
                     $query->addDescendingOrderByColumn($column->getPhpName());
156 156
                 }
157 157
             }
158 158
         }
159 159
         if (!$orderAdded) {
160 160
             $pks = $this->getPkDbName();
161
-            foreach(array_keys($pks) as $key) {
161
+            foreach (array_keys($pks) as $key) {
162 162
                 $query->addAscendingOrderByColumn($key);
163 163
             }
164 164
         }
165
-        Logger::log(static::class . ' extract orders end', LOG_DEBUG);
165
+        Logger::log(static::class.' extract orders end', LOG_DEBUG);
166 166
     }
167 167
 
168 168
     /**
@@ -177,7 +177,7 @@  discard block
 block discarded – undo
177 177
             foreach ($this->query as $field => $value) {
178 178
                 if (self::API_COMBO_FIELD === $field) {
179 179
                     ApiHelper::composerComboField($tableMap, $query, $this->extraColumns, $value);
180
-                } elseif(!preg_match('/^__/', $field)) {
180
+                } elseif (!preg_match('/^__/', $field)) {
181 181
                     ApiHelper::addModelField($tableMap, $query, $field, $value);
182 182
                 }
183 183
             }
@@ -198,10 +198,10 @@  discard block
 block discarded – undo
198 198
             list($page, $limit) = $this->extractPagination();
199 199
             if ($limit === -1) {
200 200
                 $this->list = $query->find($this->con);
201
-            } else {
201
+            }else {
202 202
                 $this->list = $query->paginate($page, $limit, $this->con);
203 203
             }
204
-        } catch (\Exception $e) {
204
+        }catch (\Exception $e) {
205 205
             Logger::log($e->getMessage(), LOG_ERR);
206 206
         }
207 207
     }
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
         $code = 200;
221 221
         list($return, $total, $pages) = $this->getList();
222 222
         $message = null;
223
-        if(!$total) {
223
+        if (!$total) {
224 224
             $message = i18n::_('No se han encontrado elementos para la búsqueda');
225 225
         }
226 226
 
@@ -246,7 +246,7 @@  discard block
 block discarded – undo
246 246
         $pages = 1;
247 247
         $message = null;
248 248
         list($code, $return) = $this->getSingleResult($pk);
249
-        if($code !== 200) {
249
+        if ($code !== 200) {
250 250
             $message = i18n::_('No se ha encontrado el elemento solicitado');
251 251
         }
252 252
 
@@ -275,13 +275,13 @@  discard block
 block discarded – undo
275 275
                 $status = 200;
276 276
                 $saved = TRUE;
277 277
                 $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
278
-            } else {
278
+            }else {
279 279
                 $message = i18n::_('No se ha podido guardar el modelo seleccionado');
280 280
             }
281
-        } catch (\Exception $e) {
282
-            $message = i18n::_('Ha ocurrido un error intentando guardar el elemento: ') .'<br>'. $e->getMessage();
281
+        }catch (\Exception $e) {
282
+            $message = i18n::_('Ha ocurrido un error intentando guardar el elemento: ').'<br>'.$e->getMessage();
283 283
             $context = [];
284
-            if(null !== $e->getPrevious()) {
284
+            if (null !== $e->getPrevious()) {
285 285
                 $context[] = $e->getPrevious()->getMessage();
286 286
             }
287 287
             Logger::log($e->getMessage(), LOG_CRIT, $context);
@@ -317,18 +317,18 @@  discard block
 block discarded – undo
317 317
                     $updated = TRUE;
318 318
                     $status = 200;
319 319
                     $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
320
-                } else {
320
+                }else {
321 321
                     $message = i18n::_('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
322 322
                 }
323
-            } catch (\Exception $e) {
323
+            }catch (\Exception $e) {
324 324
                 $message = i18n::_('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
325 325
                 $context = [];
326
-                if(null !== $e->getPrevious()) {
326
+                if (null !== $e->getPrevious()) {
327 327
                     $context[] = $e->getPrevious()->getMessage();
328 328
                 }
329 329
                 Logger::log($e->getMessage(), LOG_CRIT, $context);
330 330
             }
331
-        } else {
331
+        }else {
332 332
             $message = i18n::_('No se ha encontrado el modelo al que se hace referencia para actualizar');
333 333
         }
334 334
 
@@ -356,15 +356,15 @@  discard block
 block discarded – undo
356 356
                 $this->con->beginTransaction();
357 357
                 $this->hydrateModel($pk);
358 358
                 if (NULL !== $this->model) {
359
-                    if(method_exists('clearAllReferences', $this->model)) {
359
+                    if (method_exists('clearAllReferences', $this->model)) {
360 360
                         $this->model->clearAllReferences(true);
361 361
                     }
362 362
                     $this->model->delete($this->con);
363 363
                     $deleted = TRUE;
364 364
                 }
365
-            } catch (\Exception $e) {
365
+            }catch (\Exception $e) {
366 366
                 $context = [];
367
-                if(null !== $e->getPrevious()) {
367
+                if (null !== $e->getPrevious()) {
368 368
                     $context[] = $e->getPrevious()->getMessage();
369 369
                 }
370 370
                 Logger::log($e->getMessage(), LOG_CRIT, $context);
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
             $this->saveBulk();
394 394
             $saved = true;
395 395
             $status = 200;
396
-        } catch(\Exception $e) {
396
+        }catch (\Exception $e) {
397 397
             Logger::log($e->getMessage(), LOG_CRIT, $this->getRequest()->getData());
398 398
             $message = i18n::_('Bulk insert rolled back');
399 399
         }
@@ -415,7 +415,7 @@  discard block
 block discarded – undo
415 415
 
416 416
         /** @var CustomerTableMap $tableMap */
417 417
         $modelPk = ApiHelper::extractPrimaryKeyColumnName($this->getTableMap());
418
-        foreach($this->list->getData() as $data) {
418
+        foreach ($this->list->getData() as $data) {
419 419
             $return[] = ApiHelper::mapArrayObject($this->getModelNamespace(), $modelPk, $this->query, $data);
420 420
         }
421 421
         return $return;
@@ -432,23 +432,23 @@  discard block
 block discarded – undo
432 432
         try {
433 433
             $this->paginate();
434 434
             if (null !== $this->list) {
435
-                if(array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) {
435
+                if (array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) {
436 436
                     $return = $this->extractDataWithFormat();
437
-                } else {
437
+                }else {
438 438
                     $return = $this->list->toArray(null, false, $this->fieldType ?: TableMap::TYPE_PHPNAME, false);
439 439
                 }
440 440
                 $total = 0;
441 441
                 $pages = 0;
442
-                if($this->list instanceof PropelModelPager) {
442
+                if ($this->list instanceof PropelModelPager) {
443 443
                     $total = $this->list->getNbResults();
444 444
                     $pages = $this->list->getLastPage();
445
-                } elseif($this->list instanceof ArrayCollection) {
445
+                } elseif ($this->list instanceof ArrayCollection) {
446 446
                     $total = count($return);
447 447
                     $pages = 1;
448 448
                 }
449 449
             }
450
-        } catch (\Exception $e) {
451
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
450
+        }catch (\Exception $e) {
451
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
452 452
         }
453 453
 
454 454
         return array($return, $total, $pages);
@@ -466,7 +466,7 @@  discard block
 block discarded – undo
466 466
         $return = array();
467 467
         if (NULL === $model || !method_exists($model, 'toArray')) {
468 468
             $code = 404;
469
-        } else {
469
+        }else {
470 470
             $return = $model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
471 471
         }
472 472
 
Please login to merge, or discard this patch.
src/base/types/helpers/ApiHelper.php 1 patch
Spacing   +37 added lines, -37 removed lines patch added patch discarded remove patch
@@ -37,20 +37,20 @@  discard block
 block discarded – undo
37 37
         $behaviors = $tableMap->getBehaviors();
38 38
         foreach ($map::getFieldNames() as $field) {
39 39
             $fDto = self::parseFormField($domain, $tableMap, $field, $behaviors);
40
-            if(null !== $fDto) {
40
+            if (null !== $fDto) {
41 41
                 $form->addField($fDto);
42 42
             }
43 43
         }
44 44
 
45
-        if(array_key_exists('i18n', $behaviors)) {
46
-            $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n');
47
-            if(null !== $relateI18n) {
45
+        if (array_key_exists('i18n', $behaviors)) {
46
+            $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n');
47
+            if (null !== $relateI18n) {
48 48
                 $i18NTableMap = $relateI18n->getLocalTable();
49
-                foreach($i18NTableMap->getColumns() as $columnMap) {
49
+                foreach ($i18NTableMap->getColumns() as $columnMap) {
50 50
                     $columnName = self::getColumnMapName($columnMap);
51
-                    if(!$form->fieldExists($columnName)) {
51
+                    if (!$form->fieldExists($columnName)) {
52 52
                         $fDto = self::parseFormField($domain, $i18NTableMap, $columnMap->getPhpName(), $i18NTableMap->getBehaviors());
53
-                        if(null !== $fDto) {
53
+                        if (null !== $fDto) {
54 54
                             $fDto->pk = false;
55 55
                             $form->addField($fDto);
56 56
                         }
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
         $fDto->entity = $relatedModel;
80 80
         $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName());
81 81
         $fDto->relatedField = $relatedField->getPhpName();
82
-        $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel);
82
+        $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel);
83 83
         return $fDto;
84 84
     }
85 85
 
@@ -186,14 +186,14 @@  discard block
 block discarded – undo
186 186
     {
187 187
         $column = null;
188 188
         try {
189
-            foreach($tableMap->getColumns() as $tableMapColumn) {
189
+            foreach ($tableMap->getColumns() as $tableMapColumn) {
190 190
                 $columnName = $tableMapColumn->getPhpName();
191
-                if(preg_match('/^'.$field.'$/i', $columnName)) {
191
+                if (preg_match('/^'.$field.'$/i', $columnName)) {
192 192
                     $column = $tableMapColumn;
193 193
                     break;
194 194
                 }
195 195
             }
196
-        } catch (\Exception $e) {
196
+        }catch (\Exception $e) {
197 197
             Logger::log($e->getMessage(), LOG_DEBUG);
198 198
         }
199 199
         return $column;
@@ -207,18 +207,18 @@  discard block
 block discarded – undo
207 207
     private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null)
208 208
     {
209 209
         $tableField = $column->getFullyQualifiedName();
210
-        if(is_array($value)) {
210
+        if (is_array($value)) {
211 211
             $query->add($tableField, $value, Criteria::IN);
212 212
         } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) {
213 213
             $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN);
214 214
         } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) {
215 215
             $text = preg_replace('/(\'|\")/', '', $value);
216 216
             $text = preg_replace('/\ /', '%', $text);
217
-            $query->add($tableField, '%' . $text . '%', Criteria::LIKE);
218
-        } else {
219
-            if(null !== $column->getValueSet()) {
217
+            $query->add($tableField, '%'.$text.'%', Criteria::LIKE);
218
+        }else {
219
+            if (null !== $column->getValueSet()) {
220 220
                 $valueSet = $column->getValueSet();
221
-                if(in_array($value, $valueSet)) {
221
+                if (in_array($value, $valueSet)) {
222 222
                     $value = array_search($value, $valueSet);
223 223
                 }
224 224
             }
@@ -238,31 +238,31 @@  discard block
 block discarded – undo
238 238
         $sep = '';
239 239
         foreach ($tableMap->getColumns() as $column) {
240 240
             if ($column->isText()) {
241
-                $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
241
+                $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
242 242
                 $sep = ', " ", ';
243 243
             }
244 244
         }
245
-        foreach($tableMap->getRelations() as $relation) {
246
-            if(preg_match('/I18n$/i', $relation->getName())) {
245
+        foreach ($tableMap->getRelations() as $relation) {
246
+            if (preg_match('/I18n$/i', $relation->getName())) {
247 247
                 $localeTableMap = $relation->getLocalTable();
248 248
                 foreach ($localeTableMap->getColumns() as $column) {
249 249
                     if ($column->isText()) {
250
-                        $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
250
+                        $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
251 251
                         $sep = ', " ", ';
252 252
                     }
253 253
                 }
254 254
             }
255 255
         }
256 256
         foreach ($extraColumns as $extra => $name) {
257
-            if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
258
-                $exp .= $sep . $extra;
257
+            if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
258
+                $exp .= $sep.$extra;
259 259
                 $sep = ', " ", ';
260 260
             }
261 261
         }
262 262
         $exp .= ")";
263 263
         $text = preg_replace('/(\'|\")/', '', $value);
264 264
         $text = preg_replace('/\ /', '%', $text);
265
-        $query->where($exp . Criteria::LIKE . '"%' . $text . '%"');
265
+        $query->where($exp.Criteria::LIKE.'"%'.$text.'%"');
266 266
     }
267 267
 
268 268
     /**
@@ -287,7 +287,7 @@  discard block
 block discarded – undo
287 287
      */
288 288
     public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null)
289 289
     {
290
-        $queryReflector = new \ReflectionClass($modelNameNamespace . "Query");
290
+        $queryReflector = new \ReflectionClass($modelNameNamespace."Query");
291 291
         /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */
292 292
         $query = $queryReflector->getMethod('create')->invoke($con);
293 293
 
@@ -316,7 +316,7 @@  discard block
 block discarded – undo
316 316
         } elseif ($mappedColumn->isText()) {
317 317
             if ($mappedColumn->getSize() > 100) {
318 318
                 $fDto = self::createField($field, Field::TEXTAREA_TYPE, $required);
319
-            } else {
319
+            }else {
320 320
                 $fDto = self::generateStringField($field, $required);
321 321
             }
322 322
         } elseif ($mappedColumn->getType() === PropelTypes::BOOLEAN) {
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
                 $fDto->pk = true;
345 345
             }
346 346
         }
347
-        switch(Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
347
+        switch (Config::getParam('api.field.case', TableMap::TYPE_PHPNAME)) {
348 348
             default:
349 349
             case TableMap::TYPE_PHPNAME:
350 350
                 $fDto->name = $mappedColumn->getPhpName();
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
      */
369 369
     public static function extractPrimaryKeyColumnName(TableMap $tableMap) {
370 370
         $modelPk = null;
371
-        foreach($tableMap->getPrimaryKeys() as $pk) {
371
+        foreach ($tableMap->getPrimaryKeys() as $pk) {
372 372
             $modelPk = $pk;
373 373
             break;
374 374
         }
@@ -377,15 +377,15 @@  discard block
 block discarded – undo
377 377
 
378 378
     private static function mapResult(ActiveRecordInterface $model, array $data = []) {
379 379
         $result = [];
380
-        foreach($data as $key => $value) {
380
+        foreach ($data as $key => $value) {
381 381
             try {
382 382
                 $realValue = $model->getByName($key);
383
-            } catch(\Exception $e) {
383
+            }catch (\Exception $e) {
384 384
                 $realValue = $value;
385 385
             }
386
-            if(Api::API_MODEL_KEY_FIELD === $key) {
386
+            if (Api::API_MODEL_KEY_FIELD === $key) {
387 387
                 $result[$key] = (integer)$realValue;
388
-            } else {
388
+            }else {
389 389
                 $result[$key] = $realValue;
390 390
             }
391 391
         }
@@ -402,14 +402,14 @@  discard block
 block discarded – undo
402 402
         $objTableMap = get_class($formatter->getTableMap());
403 403
         /** @var TableMapTrait $objTableMap */
404 404
         $objData = $data;
405
-        foreach($objTableMap::getFieldNames() as $field) {
406
-            if(!array_key_exists($field, $objData)) {
405
+        foreach ($objTableMap::getFieldNames() as $field) {
406
+            if (!array_key_exists($field, $objData)) {
407 407
                 $objData[$field] = null;
408 408
             }
409 409
         }
410 410
         $obj = @$formatter->getAllObjectsFromRow($objData);
411 411
         $result = self::mapResult($obj, $data);
412
-        if(!preg_match('/' . $modelPk->getPhpName() . '/i', $query[Api::API_FIELDS_RESULT_FIELD])) {
412
+        if (!preg_match('/'.$modelPk->getPhpName().'/i', $query[Api::API_FIELDS_RESULT_FIELD])) {
413 413
             unset($result[$modelPk->getPhpName()]);
414 414
         }
415 415
         return $result;
@@ -420,7 +420,7 @@  discard block
 block discarded – undo
420 420
      */
421 421
     public static function getFieldTypes() {
422 422
         $configType = Config::getParam('api.field.case');
423
-        switch($configType) {
423
+        switch ($configType) {
424 424
             default:
425 425
             case 'UpperCamelCase':
426 426
             case TableMap::TYPE_PHPNAME:
@@ -446,11 +446,11 @@  discard block
 block discarded – undo
446 446
     }
447 447
 
448 448
     public static function getColumnMapName(ColumnMap $field) {
449
-        switch(self::getFieldTypes()) {
449
+        switch (self::getFieldTypes()) {
450 450
             default:
451 451
             case 'UpperCamelCase':
452 452
             case TableMap::TYPE_PHPNAME:
453
-                $columnName =$field->getPhpName();
453
+                $columnName = $field->getPhpName();
454 454
                 break;
455 455
             case 'camelCase':
456 456
             case 'lowerCamelCase':
Please login to merge, or discard this patch.