@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | ); |
38 | 38 | if ($r) { |
39 | 39 | if ($r['object_type'] == 1) { |
40 | - $check = (int) $connection |
|
40 | + $check = (int)$connection |
|
41 | 41 | ->fetchColumn( |
42 | 42 | 'SELECT COUNT(*) |
43 | 43 | FROM `cache_logs` |
@@ -62,7 +62,7 @@ discard block |
||
62 | 62 | |
63 | 63 | } |
64 | 64 | } elseif ($r['object_type'] == 2) { |
65 | - $check = (int) $connection |
|
65 | + $check = (int)$connection |
|
66 | 66 | ->fetchColumn( |
67 | 67 | 'SELECT COUNT(*) |
68 | 68 | FROM `caches` |
@@ -142,22 +142,22 @@ |
||
142 | 142 | |
143 | 143 | $tpl->assign('showdetails', true); |
144 | 144 | |
145 | - $r['hidden'] = (int) $connection->fetchColumn( |
|
145 | + $r['hidden'] = (int)$connection->fetchColumn( |
|
146 | 146 | 'SELECT COUNT(*) FROM `caches` WHERE `user_id`=:userId', [':userId' => $r['user_id']] |
147 | 147 | ); |
148 | - $r['hidden_active'] = (int) $connection->fetchColumn( |
|
148 | + $r['hidden_active'] = (int)$connection->fetchColumn( |
|
149 | 149 | 'SELECT COUNT(*) FROM `caches` WHERE `user_id`= :userId AND `status`=1', |
150 | 150 | [':userId' => $r['user_id']] |
151 | 151 | ); |
152 | - $r['logentries'] = (int) $connection->fetchColumn( |
|
152 | + $r['logentries'] = (int)$connection->fetchColumn( |
|
153 | 153 | 'SELECT COUNT(*) FROM `cache_logs` WHERE `user_id`= :userId', |
154 | 154 | [':userId' => $r['user_id']] |
155 | 155 | ); |
156 | - $r['deleted_logentries'] = (int) $connection->fetchColumn( |
|
156 | + $r['deleted_logentries'] = (int)$connection->fetchColumn( |
|
157 | 157 | 'SELECT COUNT(*) FROM `cache_logs_archived` WHERE `user_id`= :userId', |
158 | 158 | [':userId' => $r['user_id']] |
159 | 159 | ); |
160 | - $r['reports'] = (int) $connection->fetchColumn( |
|
160 | + $r['reports'] = (int)$connection->fetchColumn( |
|
161 | 161 | 'SELECT COUNT(*) FROM `cache_reports` WHERE `userid`= :userId', |
162 | 162 | [':userId' => $r['user_id']] |
163 | 163 | ); |
@@ -218,10 +218,10 @@ |
||
218 | 218 | $entity->nativeName = $data['native_name']; |
219 | 219 | $entity->de = $data['de']; |
220 | 220 | $entity->en = $data['en']; |
221 | - $entity->translationId = (int) $data['trans_id']; |
|
222 | - $entity->listDefaultDe = (bool) $data['list_default_de']; |
|
223 | - $entity->listDefaultEn = (bool) $data['list_default_en']; |
|
224 | - $entity->isTranslated = (bool) $data['is_translated']; |
|
221 | + $entity->translationId = (int)$data['trans_id']; |
|
222 | + $entity->listDefaultDe = (bool)$data['list_default_de']; |
|
223 | + $entity->listDefaultEn = (bool)$data['list_default_en']; |
|
224 | + $entity->isTranslated = (bool)$data['is_translated']; |
|
225 | 225 | |
226 | 226 | return $entity; |
227 | 227 | } |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | |
57 | 57 | if (count($where) > 0) { |
58 | 58 | foreach ($where as $column => $value) { |
59 | - $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
59 | + $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
60 | 60 | } |
61 | 61 | } |
62 | 62 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | $databaseArray |
94 | 94 | ); |
95 | 95 | |
96 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
96 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
97 | 97 | |
98 | 98 | return $entity; |
99 | 99 | } |
@@ -121,7 +121,7 @@ discard block |
||
121 | 121 | ['id' => $entity->id] |
122 | 122 | ); |
123 | 123 | |
124 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
124 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
125 | 125 | |
126 | 126 | return $entity; |
127 | 127 | } |
@@ -181,13 +181,13 @@ discard block |
||
181 | 181 | public function getEntityFromDatabaseArray(array $data) |
182 | 182 | { |
183 | 183 | $entity = new PageEntity(); |
184 | - $entity->id = (int) $data['id']; |
|
184 | + $entity->id = (int)$data['id']; |
|
185 | 185 | $entity->slug = $data['slug']; |
186 | 186 | $entity->metaKeywords = $data['meta_keywords']; |
187 | 187 | $entity->metaDescription = $data['meta_description']; |
188 | 188 | $entity->metaSocial = $data['meta_social']; |
189 | 189 | $entity->updatedAt = new DateTime($data['updated_at']); |
190 | - $entity->active = (bool) $data['active']; |
|
190 | + $entity->active = (bool)$data['active']; |
|
191 | 191 | |
192 | 192 | return $entity; |
193 | 193 | } |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | if (count($where) > 0) { |
56 | 56 | foreach ($where as $column => $value) { |
57 | - $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
57 | + $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
58 | 58 | } |
59 | 59 | } |
60 | 60 | |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $databaseArray |
98 | 98 | ); |
99 | 99 | |
100 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
100 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
101 | 101 | |
102 | 102 | return $entity; |
103 | 103 | } |
@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | ['id' => $entity->id] |
126 | 126 | ); |
127 | 127 | |
128 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
128 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
129 | 129 | |
130 | 130 | return $entity; |
131 | 131 | } |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | 'page_id' => $entity->pageId, |
170 | 170 | 'title' => $entity->title, |
171 | 171 | 'html' => $entity->html, |
172 | - 'position' => (int) $entity->position, |
|
172 | + 'position' => (int)$entity->position, |
|
173 | 173 | 'updated_at' => $entity->updatedAt->format(DateTime::ATOM), |
174 | 174 | 'active' => $entity->active |
175 | 175 | ]; |
@@ -185,13 +185,13 @@ discard block |
||
185 | 185 | public function getEntityFromDatabaseArray(array $data) |
186 | 186 | { |
187 | 187 | $entity = new BlockEntity(); |
188 | - $entity->id = (int) $data['id']; |
|
189 | - $entity->pageId = (int) $data['page_id']; |
|
188 | + $entity->id = (int)$data['id']; |
|
189 | + $entity->pageId = (int)$data['page_id']; |
|
190 | 190 | $entity->title = $data['title']; |
191 | 191 | $entity->html = $data['html']; |
192 | - $entity->position = (int) $data['position']; |
|
192 | + $entity->position = (int)$data['position']; |
|
193 | 193 | $entity->updatedAt = new DateTime($data['updated_at']); |
194 | - $entity->active = (bool) $data['active']; |
|
194 | + $entity->active = (bool)$data['active']; |
|
195 | 195 | |
196 | 196 | return $entity; |
197 | 197 | } |
@@ -181,9 +181,9 @@ |
||
181 | 181 | $entity->name = $data['name']; |
182 | 182 | $entity->de = $data['de']; |
183 | 183 | $entity->en = $data['en']; |
184 | - $entity->translationId = (int) $data['trans_id']; |
|
185 | - $entity->listDefaultDe = (bool) $data['list_default_de']; |
|
186 | - $entity->listDefaultEn = (bool) $data['list_default_en']; |
|
184 | + $entity->translationId = (int)$data['trans_id']; |
|
185 | + $entity->listDefaultDe = (bool)$data['list_default_de']; |
|
186 | + $entity->listDefaultEn = (bool)$data['list_default_en']; |
|
187 | 187 | $entity->sortDe = $data['sort_de']; |
188 | 188 | $entity->sortEn = $data['sort_en']; |
189 | 189 |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | ->from(self::TABLE); |
91 | 91 | |
92 | 92 | foreach ($where as $column => $value) { |
93 | - $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
93 | + $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | foreach ($order as $field => $direction) { |
@@ -132,7 +132,7 @@ discard block |
||
132 | 132 | |
133 | 133 | if (count($where) > 0) { |
134 | 134 | foreach ($where as $column => $value) { |
135 | - $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
135 | + $queryBuilder->andWhere($column . ' = ' . $queryBuilder->createNamedParameter($value)); |
|
136 | 136 | } |
137 | 137 | } |
138 | 138 |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | $databaseArray |
113 | 113 | ); |
114 | 114 | |
115 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
115 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
116 | 116 | |
117 | 117 | return $entity; |
118 | 118 | } |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | ['id' => $entity->id] |
141 | 141 | ); |
142 | 142 | |
143 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
143 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
144 | 144 | |
145 | 145 | return $entity; |
146 | 146 | } |
@@ -222,13 +222,13 @@ discard block |
||
222 | 222 | public function getEntityFromDatabaseArray(array $data) |
223 | 223 | { |
224 | 224 | $entity = new UserEntity(); |
225 | - $entity->id = (int) $data['user_id']; |
|
225 | + $entity->id = (int)$data['user_id']; |
|
226 | 226 | $entity->username = $data['username']; |
227 | 227 | $entity->password = $data['password']; |
228 | 228 | $entity->email = $data['email']; |
229 | - $entity->latitude = (double) $data['latitude']; |
|
230 | - $entity->longitude = (double) $data['longitude']; |
|
231 | - $entity->isActive = (bool) $data['is_active_flag']; |
|
229 | + $entity->latitude = (double)$data['latitude']; |
|
230 | + $entity->longitude = (double)$data['longitude']; |
|
231 | + $entity->isActive = (bool)$data['is_active_flag']; |
|
232 | 232 | $entity->firstname = $data['first_name']; |
233 | 233 | $entity->lastname = $data['last_name']; |
234 | 234 | $entity->country = $data['country']; |