Passed
Push — master ( ab5b91...849dc0 )
by Fran
03:17
created
src/base/types/traits/Helper/FieldModelHelperTrait.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
         $fDto->entity = $relatedModel;
32 32
         $relatedField = $foreignTable->getColumn($mappedColumn->getRelatedColumnName());
33 33
         $fDto->relatedField = $relatedField->getPhpName();
34
-        $fDto->url = Router::getInstance()->getRoute(strtolower($domain) . '-api-' . $relatedModel);
34
+        $fDto->url = Router::getInstance()->getRoute(strtolower($domain).'-api-'.$relatedModel);
35 35
         return $fDto;
36 36
     }
37 37
 
@@ -40,21 +40,21 @@  discard block
 block discarded – undo
40 40
      * @param ModelCriteria $query
41 41
      * @param mixed $value
42 42
      */
43
-    private static function addQueryFilter(ColumnMap $column, ModelCriteria &$query, $value = null)
43
+    private static function addQueryFilter(ColumnMap $column, ModelCriteria & $query, $value = null)
44 44
     {
45 45
         $tableField = $column->getFullyQualifiedName();
46
-        if(is_array($value)) {
46
+        if (is_array($value)) {
47 47
             $query->add($tableField, $value, Criteria::IN);
48 48
         } elseif (preg_match('/^\[/', $value) && preg_match('/\]$/', $value)) {
49 49
             $query->add($tableField, explode(',', preg_replace('/(\[|\])/', '', $value)), Criteria::IN);
50 50
         } elseif (preg_match('/^(\'|\")(.*)(\'|\")$/', $value)) {
51 51
             $text = preg_replace('/(\'|\")/', '', $value);
52 52
             $text = preg_replace('/\ /', '%', $text);
53
-            $query->add($tableField, '%' . $text . '%', Criteria::LIKE);
54
-        } else {
55
-            if(null !== $column->getValueSet()) {
53
+            $query->add($tableField, '%'.$text.'%', Criteria::LIKE);
54
+        }else {
55
+            if (null !== $column->getValueSet()) {
56 56
                 $valueSet = $column->getValueSet();
57
-                if(in_array($value, $valueSet)) {
57
+                if (in_array($value, $valueSet)) {
58 58
                     $value = array_search($value, $valueSet);
59 59
                 }
60 60
             }
@@ -69,7 +69,7 @@  discard block
 block discarded – undo
69 69
      * @param string $field
70 70
      * @param mixed $value
71 71
      */
72
-    public static function addModelField(TableMap $tableMap, ModelCriteria &$query, $field, $value = null)
72
+    public static function addModelField(TableMap $tableMap, ModelCriteria & $query, $field, $value = null)
73 73
     {
74 74
         if ($column = self::checkFieldExists($tableMap, $field)) {
75 75
             self::addQueryFilter($column, $query, $value);
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
      */
85 85
     public static function extractQuery($modelNameNamespace, ConnectionInterface $con = null)
86 86
     {
87
-        $queryReflector = new \ReflectionClass($modelNameNamespace . "Query");
87
+        $queryReflector = new \ReflectionClass($modelNameNamespace."Query");
88 88
         /** @var \Propel\Runtime\ActiveQuery\ModelCriteria $query */
89 89
         $query = $queryReflector->getMethod('create')->invoke($con);
90 90
 
@@ -97,37 +97,37 @@  discard block
 block discarded – undo
97 97
      * @param array $extraColumns
98 98
      * @param mixed $value
99 99
      */
100
-    public static function composerComboField(TableMap $tableMap, ModelCriteria &$query, array $extraColumns = [], $value = null)
100
+    public static function composerComboField(TableMap $tableMap, ModelCriteria & $query, array $extraColumns = [], $value = null)
101 101
     {
102 102
         $exp = 'CONCAT(';
103 103
         $sep = '';
104 104
         foreach ($tableMap->getColumns() as $column) {
105 105
             if ($column->isText()) {
106
-                $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
106
+                $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
107 107
                 $sep = ', " ", ';
108 108
             }
109 109
         }
110
-        foreach($tableMap->getRelations() as $relation) {
111
-            if(preg_match('/I18n$/i', $relation->getName())) {
110
+        foreach ($tableMap->getRelations() as $relation) {
111
+            if (preg_match('/I18n$/i', $relation->getName())) {
112 112
                 $localeTableMap = $relation->getLocalTable();
113 113
                 foreach ($localeTableMap->getColumns() as $column) {
114 114
                     if ($column->isText()) {
115
-                        $exp .= $sep . 'IFNULL(' . $column->getFullyQualifiedName() . ',"")';
115
+                        $exp .= $sep.'IFNULL('.$column->getFullyQualifiedName().',"")';
116 116
                         $sep = ', " ", ';
117 117
                     }
118 118
                 }
119 119
             }
120 120
         }
121 121
         foreach (array_keys($extraColumns) as $extra) {
122
-            if(!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
123
-                $exp .= $sep . $extra;
122
+            if (!preg_match("/(COUNT|DISTINCT|SUM|MAX|MIN|GROUP)/i", $extra)) {
123
+                $exp .= $sep.$extra;
124 124
                 $sep = ', " ", ';
125 125
             }
126 126
         }
127 127
         $exp .= ")";
128 128
         $text = preg_replace('/(\'|\")/', '', $value);
129 129
         $text = preg_replace('/\ /', '%', $text);
130
-        $query->where($exp . Criteria::LIKE . '"%' . $text . '%"');
130
+        $query->where($exp.Criteria::LIKE.'"%'.$text.'%"');
131 131
     }
132 132
 
133 133
     /**
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
      */
137 137
     public static function extractPrimaryKeyColumnName(TableMap $tableMap) {
138 138
         $modelPk = null;
139
-        foreach($tableMap->getPrimaryKeys() as $pk) {
139
+        foreach ($tableMap->getPrimaryKeys() as $pk) {
140 140
             $modelPk = $pk;
141 141
             break;
142 142
         }
Please login to merge, or discard this patch.
src/base/types/traits/Helper/ParameterTrait.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
      */
18 18
     public function getParams()
19 19
     {
20
-        return $this->params?: [];
20
+        return $this->params ?: [];
21 21
     }
22 22
 
23 23
     /**
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @return ParameterTrait
50 50
      */
51 51
     public function dropParam($key) {
52
-        if(array_key_exists($key, $this->params)) {
52
+        if (array_key_exists($key, $this->params)) {
53 53
             unset($this->params[$key]);
54 54
         }
55 55
         return $this;
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
      * @return mixed|null
61 61
      */
62 62
     public function getParam($key) {
63
-        if(array_key_exists($key, $this->params)) {
63
+        if (array_key_exists($key, $this->params)) {
64 64
             return $this->params[$key];
65 65
         }
66 66
         return null;
Please login to merge, or discard this patch.
src/base/types/traits/Api/ApiTrait.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -96,15 +96,15 @@  discard block
 block discarded – undo
96 96
     protected function hydrateBulkRequest() {
97 97
         $class = new \ReflectionClass($this->getModelNamespace());
98 98
         $this->list = [];
99
-        foreach($this->data as $item) {
100
-            if(is_array($item)) {
101
-                if(count($this->list) < Config::getParam('api.block.limit', 1000)) {
99
+        foreach ($this->data as $item) {
100
+            if (is_array($item)) {
101
+                if (count($this->list) < Config::getParam('api.block.limit', 1000)) {
102 102
                     /** @var ActiveRecordInterface $model */
103 103
                     $model = $class->newInstance();
104 104
                     $this->hydrateModelFromRequest($model, $item);
105 105
                     $this->list[] = $model;
106
-                } else {
107
-                    Logger::log(t('Max items per bulk insert raised'), LOG_WARNING, count($this->data) . t('items'));
106
+                }else {
107
+                    Logger::log(t('Max items per bulk insert raised'), LOG_WARNING, count($this->data).t('items'));
108 108
                 }
109 109
             }
110 110
         }
@@ -115,12 +115,12 @@  discard block
 block discarded – undo
115 115
      */
116 116
     protected function saveBulk() {
117 117
         $tablemap = $this->getTableMap();
118
-        foreach($this->list as &$model) {
118
+        foreach ($this->list as &$model) {
119 119
             $con = Propel::getWriteConnection($tablemap::DATABASE_NAME);
120 120
             try {
121 121
                 $model->save($con);
122 122
                 $con->commit();
123
-            } catch(\Exception $e) {
123
+            }catch (\Exception $e) {
124 124
                 Logger::log($e->getMessage(), LOG_ERR, $model->toArray());
125 125
                 $con->rollBack();
126 126
             }
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     protected function exportList() {
134 134
         $list = [];
135 135
         /** @var ActiveRecordInterface $item */
136
-        foreach($this->list as $item) {
136
+        foreach ($this->list as $item) {
137 137
             $list[] = $item->toArray();
138 138
         }
139 139
         return $list;
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
      *
145 145
      * @param ModelCriteria $query
146 146
      */
147
-    protected function joinTables(ModelCriteria &$query)
147
+    protected function joinTables(ModelCriteria & $query)
148 148
     {
149 149
         //TODO for specific implementations
150 150
     }
@@ -157,18 +157,18 @@  discard block
 block discarded – undo
157 157
      */
158 158
     protected function findPk(ModelCriteria $query, $primaryKey) {
159 159
         $pks = explode(Api::API_PK_SEPARATOR, urldecode($primaryKey));
160
-        if(count($pks) === 1 && !empty($pks[0])) {
160
+        if (count($pks) === 1 && !empty($pks[0])) {
161 161
             $query->filterByPrimaryKey($pks[0]);
162
-        } else {
162
+        }else {
163 163
             $item = 0;
164
-            foreach($this->getPkDbName() as $phpName) {
164
+            foreach ($this->getPkDbName() as $phpName) {
165 165
                 try {
166 166
                     $query->filterBy($phpName, $pks[$item]);
167 167
                     $item++;
168
-                    if($item >= count($pks)) {
168
+                    if ($item >= count($pks)) {
169 169
                         break;
170 170
                     }
171
-                } catch(\Exception $e) {
171
+                }catch (\Exception $e) {
172 172
                     Logger::log($e->getMessage(), LOG_DEBUG);
173 173
                 }
174 174
             }
@@ -198,8 +198,8 @@  discard block
 block discarded – undo
198 198
         try {
199 199
             $query = $this->prepareQuery();
200 200
             $this->model = $this->findPk($query, $primaryKey);
201
-        } catch (\Exception $e) {
202
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
201
+        }catch (\Exception $e) {
202
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
203 203
         }
204 204
     }
205 205
 
@@ -220,7 +220,7 @@  discard block
 block discarded – undo
220 220
     /**
221 221
      * @param ModelCriteria $query
222 222
      */
223
-    protected function checkReturnFields(ModelCriteria &$query)
223
+    protected function checkReturnFields(ModelCriteria & $query)
224 224
     {
225 225
         $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD);
226 226
         if (null !== $returnFields) {
Please login to merge, or discard this patch.
src/base/types/traits/Api/MutationTrait.php 1 patch
Spacing   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
         if (count($pks) === 1) {
82 82
             $pks = array_keys($pks);
83 83
             return [
84
-                $tableMap::TABLE_NAME . '.' . $pks[0] => Api::API_MODEL_KEY_FIELD
84
+                $tableMap::TABLE_NAME.'.'.$pks[0] => Api::API_MODEL_KEY_FIELD
85 85
             ];
86 86
         }
87 87
         if (count($pks) > 1) {
@@ -89,9 +89,9 @@  discard block
 block discarded – undo
89 89
             $principal = '';
90 90
             $sep = 'CONCAT(';
91 91
             foreach ($pks as $pk) {
92
-                $apiPks[$tableMap::TABLE_NAME . '.' . $pk->getName()] = $pk->getPhpName();
93
-                $principal .= $sep . $tableMap::TABLE_NAME . '.' . $pk->getName();
94
-                $sep = ', "' . Api::API_PK_SEPARATOR . '", ';
92
+                $apiPks[$tableMap::TABLE_NAME.'.'.$pk->getName()] = $pk->getPhpName();
93
+                $principal .= $sep.$tableMap::TABLE_NAME.'.'.$pk->getName();
94
+                $sep = ', "'.Api::API_PK_SEPARATOR.'", ';
95 95
             }
96 96
             $principal .= ')';
97 97
             $apiPks[$principal] = Api::API_MODEL_KEY_FIELD;
@@ -118,10 +118,10 @@  discard block
 block discarded – undo
118 118
         $pks = '';
119 119
         $sep = '';
120 120
         foreach ($tableMap->getPrimaryKeys() as $pk) {
121
-            $pks .= $sep . $pk->getFullyQualifiedName();
121
+            $pks .= $sep.$pk->getFullyQualifiedName();
122 122
             $sep = ', "|", ';
123 123
         }
124
-        $this->extraColumns['CONCAT("' . $tableMap->getPhpName() . ' #", ' . $pks . ')'] = Api::API_LIST_NAME_FIELD;
124
+        $this->extraColumns['CONCAT("'.$tableMap->getPhpName().' #", '.$pks.')'] = Api::API_LIST_NAME_FIELD;
125 125
     }
126 126
 
127 127
     /**
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             }
144 144
             if (null !== $column) {
145 145
                 $this->extraColumns[$column->getFullyQualifiedName()] = Api::API_LIST_NAME_FIELD;
146
-            } else {
146
+            }else {
147 147
                 $this->addClassListName($tableMap);
148 148
             }
149 149
         }
@@ -154,22 +154,22 @@  discard block
 block discarded – undo
154 154
      * @param $action
155 155
      * @throws ApiException
156 156
      */
157
-    private function addExtraColumns(ModelCriteria &$query, $action)
157
+    private function addExtraColumns(ModelCriteria & $query, $action)
158 158
     {
159 159
         if (Api::API_ACTION_LIST === $action) {
160 160
             $this->addDefaultListField();
161 161
             $this->addPkToList();
162 162
         }
163 163
         if (!empty($this->extraColumns)) {
164
-            if(Config::getParam('api.extrafields.compat', true)) {
164
+            if (Config::getParam('api.extrafields.compat', true)) {
165 165
                 $fields = array_values($this->extraColumns);
166
-            } else {
166
+            }else {
167 167
                 $returnFields = Request::getInstance()->getQuery(Api::API_FIELDS_RESULT_FIELD);
168 168
                 $fields = explode(',', $returnFields ?: '');
169 169
                 $fields[] = self::API_MODEL_KEY_FIELD;
170 170
             }
171 171
             foreach ($this->extraColumns as $expression => $columnName) {
172
-                if(empty($fields) || in_array($columnName, $fields)) {
172
+                if (empty($fields) || in_array($columnName, $fields)) {
173 173
                     $query->withColumn($expression, $columnName);
174 174
                 }
175 175
             }
@@ -196,22 +196,22 @@  discard block
 block discarded – undo
196 196
     /**
197 197
      * @param ModelCriteria $query
198 198
      */
199
-    protected function checkI18n(ModelCriteria &$query)
199
+    protected function checkI18n(ModelCriteria & $query)
200 200
     {
201 201
         $this->extractApiLang();
202 202
         $model = $this->getModelNamespace();
203
-        $modelI18n = $model . 'I18n';
203
+        $modelI18n = $model.'I18n';
204 204
         if (method_exists($query, 'useI18nQuery')) {
205 205
             $query->useI18nQuery($this->lang);
206 206
             $modelParts = explode('\\', $modelI18n);
207
-            $i18nMapClass = str_replace(end($modelParts), 'Map\\' . end($modelParts), $modelI18n) . 'TableMap';
207
+            $i18nMapClass = str_replace(end($modelParts), 'Map\\'.end($modelParts), $modelI18n).'TableMap';
208 208
             /** @var TableMap $modelI18nTableMap */
209 209
             $modelI18nTableMap = $i18nMapClass::getTableMap();
210
-            foreach($modelI18nTableMap->getColumns() as $columnMap) {
211
-                if(!$columnMap->isPrimaryKey()) {
210
+            foreach ($modelI18nTableMap->getColumns() as $columnMap) {
211
+                if (!$columnMap->isPrimaryKey()) {
212 212
                     $query->withColumn($columnMap->getFullyQualifiedName(), ApiHelper::getColumnMapName($columnMap));
213
-                } elseif(!$columnMap->isForeignKey()) {
214
-                    $query->withColumn('IFNULL(' . $columnMap->getFullyQualifiedName() . ', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap));
213
+                } elseif (!$columnMap->isForeignKey()) {
214
+                    $query->withColumn('IFNULL('.$columnMap->getFullyQualifiedName().', "'.$this->lang.'")', ApiHelper::getColumnMapName($columnMap));
215 215
                 }
216 216
             }
217 217
         }
@@ -225,22 +225,22 @@  discard block
 block discarded – undo
225 225
         $model->fromArray($data, ApiHelper::getFieldTypes());
226 226
         $tableMap = $this->getTableMap();
227 227
         try {
228
-            if($tableMap->hasRelation($tableMap->getPhpName() . 'I18n'))
228
+            if ($tableMap->hasRelation($tableMap->getPhpName().'I18n'))
229 229
             {
230
-                $relateI18n = $tableMap->getRelation($tableMap->getPhpName() . 'I18n');
230
+                $relateI18n = $tableMap->getRelation($tableMap->getPhpName().'I18n');
231 231
                 $i18NTableMap = $relateI18n->getLocalTable();
232 232
                 $model->setLocale(array_key_exists('Locale', $data) ? $data['Locale'] : (array_key_exists('locale', $data) ? $data['locale'] : Request::header(Api::HEADER_API_LANG, 'es_ES')));
233
-                foreach($i18NTableMap->getColumns() as $columnMap) {
234
-                    $method = 'set' . $columnMap->getPhpName();
233
+                foreach ($i18NTableMap->getColumns() as $columnMap) {
234
+                    $method = 'set'.$columnMap->getPhpName();
235 235
                     $dtoColumnName = ApiHelper::getColumnMapName($columnMap);
236
-                    if(array_key_exists($dtoColumnName, $data)
236
+                    if (array_key_exists($dtoColumnName, $data)
237 237
                         && method_exists($model, $method)
238 238
                         && !($columnMap->isPrimaryKey() && $columnMap->isForeignKey())) {
239 239
                         $model->$method($data[$dtoColumnName]);
240 240
                     }
241 241
                 }
242 242
             }
243
-        } catch(Exception $e) {
243
+        }catch (Exception $e) {
244 244
             Logger::log($e->getMessage(), LOG_DEBUG);
245 245
         }
246 246
     }
Please login to merge, or discard this patch.
src/controller/GeneratorController.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
                 GeneratorHelper::checkCustomNamespaceApi($apiClass);
64 64
                 $this->gen->createStructureModule($module, false, $type, $apiClass);
65 65
                 Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, t("Módulo %s generado correctamente")));
66
-                 Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true));
66
+                    Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true));
67 67
             } catch (Exception $e) {
68 68
                 Logger::log($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]");
69 69
                 Security::getInstance()->setFlash("callback_message", htmlentities($e->getMessage()));
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
      */
34 34
     public function generateModule()
35 35
     {
36
-        Logger::log("Arranque generador de módulos al solicitar " . $this->getRequest()->getRequestUri());
36
+        Logger::log("Arranque generador de módulos al solicitar ".$this->getRequest()->getRequestUri());
37 37
         /* @var $form ConfigForm */
38 38
         $form = new ModuleForm();
39 39
         $form->build();
@@ -64,8 +64,8 @@  discard block
 block discarded – undo
64 64
                 $this->gen->createStructureModule($module, false, $type, $apiClass);
65 65
                 Security::getInstance()->setFlash("callback_message", str_replace("%s", $module, t("Módulo %s generado correctamente")));
66 66
                  Security::getInstance()->setFlash("callback_route", $this->getRoute("admin-module", true));
67
-            } catch (Exception $e) {
68
-                Logger::log($e->getMessage() . " [" . $e->getFile() . ":" . $e->getLine() . "]");
67
+            }catch (Exception $e) {
68
+                Logger::log($e->getMessage()." [".$e->getFile().":".$e->getLine()."]");
69 69
                 Security::getInstance()->setFlash("callback_message", htmlentities($e->getMessage()));
70 70
             }
71 71
         }
Please login to merge, or discard this patch.
src/base/extension/traits/JsTrait.php 1 patch
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@  discard block
 block discarded – undo
23 23
             foreach ($compiledFiles as $file) {
24 24
                 echo "\t\t<script type='text/javascript' src='{$file}'></script>\n";
25 25
             }
26
-        } else {
27
-            echo "\t\t<script type='text/javascript' src='" . $baseUrl . "/js/" . $hash . ".js'" .
26
+        }else {
27
+            echo "\t\t<script type='text/javascript' src='".$baseUrl."/js/".$hash.".js'".
28 28
                 "></script>\n";
29 29
         }
30 30
     }
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
      */
41 41
     protected function putDebugJs($pathParts, $base, $file, $hash, array &$compiledFiles)
42 42
     {
43
-        $filePath = $hash . "_" . $pathParts[count($pathParts) - 1];
44
-        $compiledFiles[] = "/js/" . $filePath;
43
+        $filePath = $hash."_".$pathParts[count($pathParts) - 1];
44
+        $compiledFiles[] = "/js/".$filePath;
45 45
         $data = "";
46
-        if (!file_exists($base . $filePath) || filemtime($base . $filePath) < filemtime($file)) {
46
+        if (!file_exists($base.$filePath) || filemtime($base.$filePath) < filemtime($file)) {
47 47
             $data = file_get_contents($file);
48
-            AssetsHelper::storeContents($base . $filePath, $data);
48
+            AssetsHelper::storeContents($base.$filePath, $data);
49 49
         }
50 50
         return $data;
51 51
     }
@@ -61,9 +61,9 @@  discard block
 block discarded – undo
61 61
      */
62 62
     protected function compileJs(array $files, $basePath, $hash, array &$compiledFiles)
63 63
     {
64
-        $base = $basePath . "js" . DIRECTORY_SEPARATOR;
64
+        $base = $basePath."js".DIRECTORY_SEPARATOR;
65 65
         $debug = Config::getParam('debug');
66
-        if ($debug || !file_exists($base . $hash . ".js")) {
66
+        if ($debug || !file_exists($base.$hash.".js")) {
67 67
             $data = '';
68 68
             if (0 < count($files)) {
69 69
                 $minifier = new JS();
@@ -72,15 +72,15 @@  discard block
 block discarded – undo
72 72
                     if (file_exists($file)) {
73 73
                         if ($debug) {
74 74
                             $data = $this->putDebugJs($pathParts, $base, $file, $hash, $compiledFiles);
75
-                        } elseif (!file_exists($base . $hash . ".js")) {
75
+                        } elseif (!file_exists($base.$hash.".js")) {
76 76
                             $minifier->add($file);
77 77
                             //$data = $this->putProductionJs($base, $file, $data);
78 78
                         }
79 79
                     }
80 80
                 }
81
-                if($debug) {
82
-                    AssetsHelper::storeContents($base . $hash . ".js", $data);
83
-                } else {
81
+                if ($debug) {
82
+                    AssetsHelper::storeContents($base.$hash.".js", $data);
83
+                }else {
84 84
                     $this->dumpJs($hash, $base, $minifier);
85 85
                 }
86 86
                 unset($minifier);
@@ -101,9 +101,9 @@  discard block
 block discarded – undo
101 101
         ini_set('memory_limit', -1);
102 102
         GeneratorHelper::createDir($base);
103 103
         if (Config::getParam('assets.obfuscate', false)) {
104
-            $minifier->gzip($base . $hash . ".js");
105
-        } else {
106
-            $minifier->minify($base . $hash . ".js");
104
+            $minifier->gzip($base.$hash.".js");
105
+        }else {
106
+            $minifier->minify($base.$hash.".js");
107 107
         }
108 108
     }
109 109
 }
Please login to merge, or discard this patch.
src/base/types/traits/CurlTrait.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -77,8 +77,8 @@  discard block
 block discarded – undo
77 77
     protected $isMultipart = false;
78 78
 
79 79
     protected function closeConnection() {
80
-        if(null !== $this?->con) {
81
-            if($this?->con instanceof \CurlHandle) {
80
+        if (null !== $this?->con) {
81
+            if ($this?->con instanceof \CurlHandle) {
82 82
                 curl_close($this->con);
83 83
             }
84 84
             $this->setCon(null);
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
     {
95 95
         $this->params = [];
96 96
         $this->headers = [];
97
-        Logger::log('Context service for ' . static::class . ' cleared!');
97
+        Logger::log('Context service for '.static::class.' cleared!');
98 98
         $this->closeConnection();
99 99
     }
100 100
 
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     {
103 103
         $this->clearContext();
104 104
         $con = curl_init($this->url);
105
-        if($con instanceof \CurlHandle) {
105
+        if ($con instanceof \CurlHandle) {
106 106
             $this->setCon($con);
107 107
         }
108 108
     }
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     public function setUrl(string $url, bool $cleanContext = true)
123 123
     {
124 124
         $this->url = $url;
125
-        if($cleanContext) {
125
+        if ($cleanContext) {
126 126
             $this->initialize();
127 127
         }
128 128
     }
@@ -187,7 +187,7 @@  discard block
 block discarded – undo
187 187
      */
188 188
     public function setIsJson($isJson = true) {
189 189
         $this->isJson = $isJson;
190
-        if($isJson) {
190
+        if ($isJson) {
191 191
             $this->setIsMultipart(false);
192 192
         }
193 193
     }
@@ -204,7 +204,7 @@  discard block
 block discarded – undo
204 204
      */
205 205
     public function setIsMultipart($isMultipart = true) {
206 206
         $this->isMultipart = $isMultipart;
207
-        if($isMultipart) {
207
+        if ($isMultipart) {
208 208
             $this->setIsJson(false);
209 209
         }
210 210
     }
Please login to merge, or discard this patch.
src/base/types/Api.php 1 patch
Spacing   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -56,20 +56,20 @@  discard block
 block discarded – undo
56 56
     public function init()
57 57
     {
58 58
         parent::init();
59
-        Logger::log(static::class . ' init', LOG_DEBUG);
59
+        Logger::log(static::class.' init', LOG_DEBUG);
60 60
         $this->domain = $this->getDomain();
61 61
         $this->hydrateRequestData();
62 62
         $this->hydrateOrders();
63
-        if($this instanceof CustomApi === false) {
63
+        if ($this instanceof CustomApi === false) {
64 64
             $this->createConnection($this->getTableMap());
65 65
         }
66 66
         $this->checkFieldType();
67 67
         $this->setLoaded(true);
68
-        Logger::log(static::class . ' loaded', LOG_DEBUG);
68
+        Logger::log(static::class.' loaded', LOG_DEBUG);
69 69
     }
70 70
 
71 71
     private function checkActions($method) {
72
-        switch($method) {
72
+        switch ($method) {
73 73
             default:
74 74
             case 'modelList': $this->action = self::API_ACTION_LIST; break;
75 75
             case 'get': $this->action = self::API_ACTION_GET; break;
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
         $code = 200;
95 95
         list($return, $total, $pages) = $this->getList();
96 96
         $message = null;
97
-        if(!$total) {
97
+        if (!$total) {
98 98
             $message = t('No se han encontrado elementos para la búsqueda');
99 99
         }
100 100
 
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         $pages = 1;
120 120
         $message = null;
121 121
         list($code, $return) = $this->getSingleResult($pk);
122
-        if($code !== 200) {
122
+        if ($code !== 200) {
123 123
             $message = t('No se ha encontrado el elemento solicitado');
124 124
         }
125 125
 
@@ -148,13 +148,13 @@  discard block
 block discarded – undo
148 148
                 $status = 200;
149 149
                 $saved = TRUE;
150 150
                 $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
151
-            } else {
151
+            }else {
152 152
                 $message = t('No se ha podido guardar el modelo seleccionado');
153 153
             }
154
-        } catch (\Exception $e) {
155
-            $message = t('Ha ocurrido un error intentando guardar el elemento: ') .'<br>'. $e->getMessage();
154
+        }catch (\Exception $e) {
155
+            $message = t('Ha ocurrido un error intentando guardar el elemento: ').'<br>'.$e->getMessage();
156 156
             $context = [];
157
-            if(null !== $e->getPrevious()) {
157
+            if (null !== $e->getPrevious()) {
158 158
                 $context[] = $e->getPrevious()->getMessage();
159 159
             }
160 160
             Logger::log($e->getMessage(), LOG_CRIT, $context);
@@ -190,18 +190,18 @@  discard block
 block discarded – undo
190 190
                     $updated = TRUE;
191 191
                     $status = 200;
192 192
                     $model = $this->model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
193
-                } else {
193
+                }else {
194 194
                     $message = t('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
195 195
                 }
196
-            } catch (\Exception $e) {
196
+            }catch (\Exception $e) {
197 197
                 $message = t('Ha ocurrido un error intentando actualizar el elemento, por favor revisa los logs');
198 198
                 $context = [];
199
-                if(null !== $e->getPrevious()) {
199
+                if (null !== $e->getPrevious()) {
200 200
                     $context[] = $e->getPrevious()->getMessage();
201 201
                 }
202 202
                 Logger::log($e->getMessage(), LOG_CRIT, $context);
203 203
             }
204
-        } else {
204
+        }else {
205 205
             $message = t('No se ha encontrado el modelo al que se hace referencia para actualizar');
206 206
         }
207 207
 
@@ -229,15 +229,15 @@  discard block
 block discarded – undo
229 229
                 $this->con->beginTransaction();
230 230
                 $this->hydrateModel($pk);
231 231
                 if (NULL !== $this->model) {
232
-                    if(method_exists('clearAllReferences', $this->model)) {
232
+                    if (method_exists('clearAllReferences', $this->model)) {
233 233
                         $this->model->clearAllReferences(true);
234 234
                     }
235 235
                     $this->model->delete($this->con);
236 236
                     $deleted = TRUE;
237 237
                 }
238
-            } catch (\Exception $e) {
238
+            }catch (\Exception $e) {
239 239
                 $context = [];
240
-                if(null !== $e->getPrevious()) {
240
+                if (null !== $e->getPrevious()) {
241 241
                     $context[] = $e->getPrevious()->getMessage();
242 242
                 }
243 243
                 Logger::log($e->getMessage(), LOG_CRIT, $context);
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
             $this->saveBulk();
267 267
             $saved = true;
268 268
             $status = 200;
269
-        } catch(\Exception $e) {
269
+        }catch (\Exception $e) {
270 270
             Logger::log($e->getMessage(), LOG_CRIT, $this->getRequest()->getData());
271 271
             $message = t('Bulk insert rolled back');
272 272
         }
@@ -278,7 +278,7 @@  discard block
 block discarded – undo
278 278
 
279 279
         /** @var CustomerTableMap $tableMap */
280 280
         $modelPk = ApiHelper::extractPrimaryKeyColumnName($this->getTableMap());
281
-        foreach($this->list->getData() as $data) {
281
+        foreach ($this->list->getData() as $data) {
282 282
             $return[] = ApiHelper::mapArrayObject($this->getModelNamespace(), $modelPk, $this->query, $data);
283 283
         }
284 284
         return $return;
@@ -295,23 +295,23 @@  discard block
 block discarded – undo
295 295
         try {
296 296
             $this->paginate();
297 297
             if (null !== $this->list) {
298
-                if(array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) {
298
+                if (array_key_exists(self::API_FIELDS_RESULT_FIELD, $this->query) && Config::getParam('api.field.types')) {
299 299
                     $return = $this->extractDataWithFormat();
300
-                } else {
300
+                }else {
301 301
                     $return = $this->list->toArray(null, false, $this->fieldType ?: TableMap::TYPE_PHPNAME, false);
302 302
                 }
303 303
                 $total = 0;
304 304
                 $pages = 0;
305
-                if($this->list instanceof PropelModelPager) {
305
+                if ($this->list instanceof PropelModelPager) {
306 306
                     $total = $this->list->getNbResults();
307 307
                     $pages = $this->list->getLastPage();
308
-                } elseif($this->list instanceof ArrayCollection) {
308
+                } elseif ($this->list instanceof ArrayCollection) {
309 309
                     $total = count($return);
310 310
                     $pages = 1;
311 311
                 }
312 312
             }
313
-        } catch (\Exception $e) {
314
-            Logger::log(get_class($this) . ': ' . $e->getMessage(), LOG_ERR);
313
+        }catch (\Exception $e) {
314
+            Logger::log(get_class($this).': '.$e->getMessage(), LOG_ERR);
315 315
         }
316 316
 
317 317
         return array($return, $total, $pages);
@@ -329,7 +329,7 @@  discard block
 block discarded – undo
329 329
         $return = array();
330 330
         if (NULL === $model || !method_exists($model, 'toArray')) {
331 331
             $code = 404;
332
-        } else {
332
+        }else {
333 333
             $return = $model->toArray($this->fieldType ?: TableMap::TYPE_PHPNAME, true, [], true);
334 334
         }
335 335
 
Please login to merge, or discard this patch.
src/base/types/traits/Api/Crud/ApiListTrait.php 1 patch
Spacing   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
     protected function hydrateOrders()
38 38
     {
39 39
         if (count($this->query)) {
40
-            Logger::log(static::class . ' gathering query string', LOG_DEBUG);
40
+            Logger::log(static::class.' gathering query string', LOG_DEBUG);
41 41
             foreach ($this->query as $key => $value) {
42 42
                 if ($key === self::API_ORDER_FIELD) {
43 43
                     $orders = json_decode($value, true);
@@ -55,10 +55,10 @@  discard block
 block discarded – undo
55 55
      */
56 56
     protected function extractPagination()
57 57
     {
58
-        Logger::log(static::class . ' extract pagination start', LOG_DEBUG);
58
+        Logger::log(static::class.' extract pagination start', LOG_DEBUG);
59 59
         $page = array_key_exists(self::API_PAGE_FIELD, $this->query) ? $this->query[self::API_PAGE_FIELD] : 1;
60 60
         $limit = array_key_exists(self::API_LIMIT_FIELD, $this->query) ? $this->query[self::API_LIMIT_FIELD] : 100;
61
-        Logger::log(static::class . ' extract pagination end', LOG_DEBUG);
61
+        Logger::log(static::class.' extract pagination end', LOG_DEBUG);
62 62
         return array($page, (int)$limit);
63 63
     }
64 64
 
@@ -67,9 +67,9 @@  discard block
 block discarded – undo
67 67
      * @param ModelCriteria $query
68 68
      * @throws \PSFS\base\exception\ApiException
69 69
      */
70
-    protected function addOrders(ModelCriteria &$query)
70
+    protected function addOrders(ModelCriteria & $query)
71 71
     {
72
-        Logger::log(static::class . ' extract orders start ', LOG_DEBUG);
72
+        Logger::log(static::class.' extract orders start ', LOG_DEBUG);
73 73
         $orderAdded = FALSE;
74 74
         $tableMap = $this->getTableMap();
75 75
         foreach ($this->order->getOrders() as $field => $direction) {
@@ -77,18 +77,18 @@  discard block
 block discarded – undo
77 77
                 $orderAdded = TRUE;
78 78
                 if ($direction === Order::ASC) {
79 79
                     $query->addAscendingOrderByColumn($column->getPhpName());
80
-                } else {
80
+                }else {
81 81
                     $query->addDescendingOrderByColumn($column->getPhpName());
82 82
                 }
83 83
             }
84 84
         }
85 85
         if (!$orderAdded) {
86 86
             $pks = $this->getPkDbName();
87
-            foreach(array_keys($pks) as $key) {
87
+            foreach (array_keys($pks) as $key) {
88 88
                 $query->addAscendingOrderByColumn($key);
89 89
             }
90 90
         }
91
-        Logger::log(static::class . ' extract orders end', LOG_DEBUG);
91
+        Logger::log(static::class.' extract orders end', LOG_DEBUG);
92 92
     }
93 93
 
94 94
     /**
@@ -96,14 +96,14 @@  discard block
 block discarded – undo
96 96
      *
97 97
      * @param ModelCriteria $query
98 98
      */
99
-    protected function addFilters(ModelCriteria &$query)
99
+    protected function addFilters(ModelCriteria & $query)
100 100
     {
101 101
         if (count($this->query) > 0) {
102 102
             $tableMap = $this->getTableMap();
103 103
             foreach ($this->query as $field => $value) {
104 104
                 if (self::API_COMBO_FIELD === $field) {
105 105
                     ApiHelper::composerComboField($tableMap, $query, $this->extraColumns, $value);
106
-                } elseif(!preg_match('/^__/', $field)) {
106
+                } elseif (!preg_match('/^__/', $field)) {
107 107
                     ApiHelper::addModelField($tableMap, $query, $field, $value);
108 108
                 }
109 109
             }
@@ -123,11 +123,11 @@  discard block
 block discarded – undo
123 123
             list($page, $limit) = $this->extractPagination();
124 124
             if ($limit === -1) {
125 125
                 $this->list = $query->find($this->con);
126
-            } else {
126
+            }else {
127 127
                 $this->list = $query->paginate($page, $limit, $this->con);
128 128
             }
129 129
             $this->checkReturnFields($this->list->getQuery());
130
-        } catch (\Exception $e) {
130
+        }catch (\Exception $e) {
131 131
             Logger::log($e->getMessage(), LOG_ERR);
132 132
         }
133 133
     }
Please login to merge, or discard this patch.