Completed
Push — next ( 8119eb...ae8da3 )
by Thomas
19s queued 12s
created
local/devel/Repositories/LanguagesRepository.php 1 patch
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
122 122
         );
123 123
 
124
-        $entity->short = (int) $this->connection->lastInsertId();
124
+        $entity->short = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -193,15 +193,15 @@  discard block
 block discarded – undo
193 193
     public function getEntityFromDatabaseArray(array $data)
194 194
     {
195 195
         $entity = new LanguagesEntity();
196
-        $entity->short = (string) $data['short'];
197
-        $entity->name = (string) $data['name'];
198
-        $entity->transId = (int) $data['trans_id'];
199
-        $entity->nativeName = (string) $data['native_name'];
200
-        $entity->de = (string) $data['de'];
201
-        $entity->en = (string) $data['en'];
202
-        $entity->listDefaultDe = (int) $data['list_default_de'];
203
-        $entity->listDefaultEn = (int) $data['list_default_en'];
204
-        $entity->isTranslated = (int) $data['is_translated'];
196
+        $entity->short = (string)$data['short'];
197
+        $entity->name = (string)$data['name'];
198
+        $entity->transId = (int)$data['trans_id'];
199
+        $entity->nativeName = (string)$data['native_name'];
200
+        $entity->de = (string)$data['de'];
201
+        $entity->en = (string)$data['en'];
202
+        $entity->listDefaultDe = (int)$data['list_default_de'];
203
+        $entity->listDefaultEn = (int)$data['list_default_en'];
204
+        $entity->isTranslated = (int)$data['is_translated'];
205 205
 
206 206
         return $entity;
207 207
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheCoordinatesRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
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
     }
@@ -190,12 +190,12 @@  discard block
 block discarded – undo
190 190
     public function getEntityFromDatabaseArray(array $data)
191 191
     {
192 192
         $entity = new GeoCacheCoordinatesEntity();
193
-        $entity->id = (int) $data['id'];
193
+        $entity->id = (int)$data['id'];
194 194
         $entity->dateCreated = new DateTime($data['date_created']);
195
-        $entity->cacheId = (int) $data['cache_id'];
195
+        $entity->cacheId = (int)$data['cache_id'];
196 196
         $entity->longitude = $data['longitude'];
197 197
         $entity->latitude = $data['latitude'];
198
-        $entity->restoredBy = (int) $data['restored_by'];
198
+        $entity->restoredBy = (int)$data['restored_by'];
199 199
 
200 200
         return $entity;
201 201
     }
Please login to merge, or discard this patch.
local/devel/Repositories/SearchIgnoreRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
122 122
         );
123 123
 
124
-        $entity->word = (int) $this->connection->lastInsertId();
124
+        $entity->word = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     public function getEntityFromDatabaseArray(array $data)
186 186
     {
187 187
         $entity = new SearchIgnoreEntity();
188
-        $entity->word = (string) $data['word'];
188
+        $entity->word = (string)$data['word'];
189 189
 
190 190
         return $entity;
191 191
     }
Please login to merge, or discard this patch.
local/devel/Repositories/NotifyWaitingRepository.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
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
     }
@@ -188,10 +188,10 @@  discard block
 block discarded – undo
188 188
     public function getEntityFromDatabaseArray(array $data)
189 189
     {
190 190
         $entity = new NotifyWaitingEntity();
191
-        $entity->id = (int) $data['id'];
192
-        $entity->cacheId = (int) $data['cache_id'];
193
-        $entity->userId = (int) $data['user_id'];
194
-        $entity->type = (int) $data['type'];
191
+        $entity->id = (int)$data['id'];
192
+        $entity->cacheId = (int)$data['cache_id'];
193
+        $entity->userId = (int)$data['user_id'];
194
+        $entity->type = (int)$data['type'];
195 195
 
196 196
         return $entity;
197 197
     }
Please login to merge, or discard this patch.
local/devel/Repositories/GeodbSearchRepository.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
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
     }
@@ -189,11 +189,11 @@  discard block
 block discarded – undo
189 189
     public function getEntityFromDatabaseArray(array $data)
190 190
     {
191 191
         $entity = new GeodbSearchEntity();
192
-        $entity->id = (int) $data['id'];
193
-        $entity->locId = (int) $data['loc_id'];
194
-        $entity->sort = (string) $data['sort'];
195
-        $entity->simple = (string) $data['simple'];
196
-        $entity->simplehash = (int) $data['simplehash'];
192
+        $entity->id = (int)$data['id'];
193
+        $entity->locId = (int)$data['loc_id'];
194
+        $entity->sort = (string)$data['sort'];
195
+        $entity->simple = (string)$data['simple'];
196
+        $entity->simplehash = (int)$data['simplehash'];
197 197
 
198 198
         return $entity;
199 199
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheWaypointPoolRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
122 122
         );
123 123
 
124
-        $entity->wpOc = (int) $this->connection->lastInsertId();
124
+        $entity->wpOc = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -186,8 +186,8 @@  discard block
 block discarded – undo
186 186
     public function getEntityFromDatabaseArray(array $data)
187 187
     {
188 188
         $entity = new GeoCacheWaypointPoolEntity();
189
-        $entity->wpOc = (string) $data['wp_oc'];
190
-        $entity->uuid = (string) $data['uuid'];
189
+        $entity->wpOc = (string)$data['wp_oc'];
190
+        $entity->uuid = (string)$data['uuid'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/GkItemWaypointRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
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
     }
@@ -186,8 +186,8 @@  discard block
 block discarded – undo
186 186
     public function getEntityFromDatabaseArray(array $data)
187 187
     {
188 188
         $entity = new GkItemWaypointEntity();
189
-        $entity->id = (int) $data['id'];
190
-        $entity->wp = (string) $data['wp'];
189
+        $entity->id = (int)$data['id'];
190
+        $entity->wp = (string)$data['wp'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheLogsArchivedRepository.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
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
     }
@@ -208,30 +208,30 @@  discard block
 block discarded – undo
208 208
     public function getEntityFromDatabaseArray(array $data)
209 209
     {
210 210
         $entity = new GeoCacheLogsArchivedEntity();
211
-        $entity->id = (int) $data['id'];
212
-        $entity->uuid = (string) $data['uuid'];
213
-        $entity->node = (int) $data['node'];
211
+        $entity->id = (int)$data['id'];
212
+        $entity->uuid = (string)$data['uuid'];
213
+        $entity->node = (int)$data['node'];
214 214
         $entity->dateCreated = new DateTime($data['date_created']);
215 215
         $entity->entryLastModified = new DateTime($data['entry_last_modified']);
216 216
         $entity->lastModified = new DateTime($data['last_modified']);
217
-        $entity->okapiSyncbase = (string) $data['okapi_syncbase'];
217
+        $entity->okapiSyncbase = (string)$data['okapi_syncbase'];
218 218
         $entity->logLastModified = new DateTime($data['log_last_modified']);
219
-        $entity->cacheId = (int) $data['cache_id'];
220
-        $entity->userId = (int) $data['user_id'];
221
-        $entity->type = (int) $data['type'];
222
-        $entity->ocTeamComment = (int) $data['oc_team_comment'];
219
+        $entity->cacheId = (int)$data['cache_id'];
220
+        $entity->userId = (int)$data['user_id'];
221
+        $entity->type = (int)$data['type'];
222
+        $entity->ocTeamComment = (int)$data['oc_team_comment'];
223 223
         $entity->date = new DateTime($data['date']);
224 224
         $entity->orderDate = new DateTime($data['order_date']);
225
-        $entity->needsMaintenance = (int) $data['needs_maintenance'];
226
-        $entity->listingOutdated = (int) $data['listing_outdated'];
227
-        $entity->text = (string) $data['text'];
228
-        $entity->textHtml = (int) $data['text_html'];
229
-        $entity->textHtmledit = (int) $data['text_htmledit'];
230
-        $entity->ownerNotified = (int) $data['owner_notified'];
225
+        $entity->needsMaintenance = (int)$data['needs_maintenance'];
226
+        $entity->listingOutdated = (int)$data['listing_outdated'];
227
+        $entity->text = (string)$data['text'];
228
+        $entity->textHtml = (int)$data['text_html'];
229
+        $entity->textHtmledit = (int)$data['text_htmledit'];
230
+        $entity->ownerNotified = (int)$data['owner_notified'];
231 231
         $entity->picture = $data['picture'];
232 232
         $entity->deletionDate = new DateTime($data['deletion_date']);
233
-        $entity->deletedBy = (int) $data['deleted_by'];
234
-        $entity->restoredBy = (int) $data['restored_by'];
233
+        $entity->deletedBy = (int)$data['deleted_by'];
234
+        $entity->restoredBy = (int)$data['restored_by'];
235 235
 
236 236
         return $entity;
237 237
     }
Please login to merge, or discard this patch.
local/devel/Repositories/SysTemptablesRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
             $databaseArray
122 122
         );
123 123
 
124
-        $entity->threadid = (int) $this->connection->lastInsertId();
124
+        $entity->threadid = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -186,8 +186,8 @@  discard block
 block discarded – undo
186 186
     public function getEntityFromDatabaseArray(array $data)
187 187
     {
188 188
         $entity = new SysTemptablesEntity();
189
-        $entity->threadid = (int) $data['threadid'];
190
-        $entity->name = (string) $data['name'];
189
+        $entity->threadid = (int)$data['threadid'];
190
+        $entity->name = (string)$data['name'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.