Completed
Push — development ( 9e3728...14ea30 )
by Thomas
20s queued 12s
created
local/devel/Repositories/GeodbPolygonsRepository.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->polygonId = (int) $this->connection->lastInsertId();
124
+        $entity->polygonId = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
     public function getEntityFromDatabaseArray(array $data)
189 189
     {
190 190
         $entity = new GeodbPolygonsEntity();
191
-        $entity->polygonId = (int) $data['polygon_id'];
192
-        $entity->seqNo = (int) $data['seq_no'];
191
+        $entity->polygonId = (int)$data['polygon_id'];
192
+        $entity->seqNo = (int)$data['seq_no'];
193 193
         $entity->lon = $data['lon'];
194 194
         $entity->lat = $data['lat'];
195 195
 
Please login to merge, or discard this patch.
local/devel/Repositories/GnsLocationsRepository.php 1 patch
Spacing   +27 added lines, -27 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->rc = (int) $this->connection->lastInsertId();
124
+        $entity->rc = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -213,35 +213,35 @@  discard block
 block discarded – undo
213 213
     public function getEntityFromDatabaseArray(array $data)
214 214
     {
215 215
         $entity = new GnsLocationsEntity();
216
-        $entity->rc = (int) $data['rc'];
217
-        $entity->ufi = (int) $data['ufi'];
218
-        $entity->uni = (int) $data['uni'];
216
+        $entity->rc = (int)$data['rc'];
217
+        $entity->ufi = (int)$data['ufi'];
218
+        $entity->uni = (int)$data['uni'];
219 219
         $entity->lat = $data['lat'];
220 220
         $entity->lon = $data['lon'];
221
-        $entity->dmsLat = (int) $data['dms_lat'];
222
-        $entity->dmsLon = (int) $data['dms_lon'];
223
-        $entity->utm = (string) $data['utm'];
224
-        $entity->jog = (string) $data['jog'];
225
-        $entity->fc = (string) $data['fc'];
226
-        $entity->dsg = (string) $data['dsg'];
227
-        $entity->pc = (int) $data['pc'];
228
-        $entity->cc1 = (string) $data['cc1'];
229
-        $entity->adm1 = (string) $data['adm1'];
230
-        $entity->adm2 = (string) $data['adm2'];
231
-        $entity->dim = (int) $data['dim'];
232
-        $entity->cc2 = (string) $data['cc2'];
233
-        $entity->nt = (string) $data['nt'];
234
-        $entity->lc = (string) $data['lc'];
235
-        $entity->sHORTFORM = (string) $data['SHORT_FORM'];
236
-        $entity->gENERIC = (string) $data['GENERIC'];
237
-        $entity->sORTNAME = (string) $data['SORT_NAME'];
238
-        $entity->fULLNAME = (string) $data['FULL_NAME'];
239
-        $entity->fULLNAMEND = (string) $data['FULL_NAME_ND'];
221
+        $entity->dmsLat = (int)$data['dms_lat'];
222
+        $entity->dmsLon = (int)$data['dms_lon'];
223
+        $entity->utm = (string)$data['utm'];
224
+        $entity->jog = (string)$data['jog'];
225
+        $entity->fc = (string)$data['fc'];
226
+        $entity->dsg = (string)$data['dsg'];
227
+        $entity->pc = (int)$data['pc'];
228
+        $entity->cc1 = (string)$data['cc1'];
229
+        $entity->adm1 = (string)$data['adm1'];
230
+        $entity->adm2 = (string)$data['adm2'];
231
+        $entity->dim = (int)$data['dim'];
232
+        $entity->cc2 = (string)$data['cc2'];
233
+        $entity->nt = (string)$data['nt'];
234
+        $entity->lc = (string)$data['lc'];
235
+        $entity->sHORTFORM = (string)$data['SHORT_FORM'];
236
+        $entity->gENERIC = (string)$data['GENERIC'];
237
+        $entity->sORTNAME = (string)$data['SORT_NAME'];
238
+        $entity->fULLNAME = (string)$data['FULL_NAME'];
239
+        $entity->fULLNAMEND = (string)$data['FULL_NAME_ND'];
240 240
         $entity->mODDATE = new DateTime($data['MOD_DATE']);
241
-        $entity->admtxt1 = (string) $data['admtxt1'];
242
-        $entity->admtxt3 = (string) $data['admtxt3'];
243
-        $entity->admtxt4 = (string) $data['admtxt4'];
244
-        $entity->admtxt2 = (string) $data['admtxt2'];
241
+        $entity->admtxt1 = (string)$data['admtxt1'];
242
+        $entity->admtxt3 = (string)$data['admtxt3'];
243
+        $entity->admtxt4 = (string)$data['admtxt4'];
244
+        $entity->admtxt2 = (string)$data['admtxt2'];
245 245
 
246 246
         return $entity;
247 247
     }
Please login to merge, or discard this patch.
local/devel/Repositories/OkapiSearchSetsRepository.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
     }
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
     public function getEntityFromDatabaseArray(array $data)
189 189
     {
190 190
         $entity = new OkapiSearchSetsEntity();
191
-        $entity->id = (int) $data['id'];
192
-        $entity->paramsHash = (string) $data['params_hash'];
191
+        $entity->id = (int)$data['id'];
192
+        $entity->paramsHash = (string)$data['params_hash'];
193 193
         $entity->dateCreated = new DateTime($data['date_created']);
194 194
         $entity->expires = new DateTime($data['expires']);
195 195
 
Please login to merge, or discard this patch.
local/devel/Repositories/PageBlockRepository.php 1 patch
Spacing   +8 added lines, -8 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
     }
@@ -192,14 +192,14 @@  discard block
 block discarded – undo
192 192
     public function getEntityFromDatabaseArray(array $data)
193 193
     {
194 194
         $entity = new PageBlockEntity();
195
-        $entity->id = (int) $data['id'];
196
-        $entity->pageId = (int) $data['page_id'];
197
-        $entity->locale = (string) $data['locale'];
198
-        $entity->title = (string) $data['title'];
199
-        $entity->html = (string) $data['html'];
200
-        $entity->position = (int) $data['position'];
195
+        $entity->id = (int)$data['id'];
196
+        $entity->pageId = (int)$data['page_id'];
197
+        $entity->locale = (string)$data['locale'];
198
+        $entity->title = (string)$data['title'];
199
+        $entity->html = (string)$data['html'];
200
+        $entity->position = (int)$data['position'];
201 201
         $entity->updatedAt = new DateTime($data['updated_at']);
202
-        $entity->active = (int) $data['active'];
202
+        $entity->active = (int)$data['active'];
203 203
 
204 204
         return $entity;
205 205
     }
Please login to merge, or discard this patch.
local/devel/Repositories/StatCacheLogsRepository.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->cacheId = (int) $this->connection->lastInsertId();
124
+        $entity->cacheId = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -191,8 +191,8 @@  discard block
 block discarded – undo
191 191
     public function getEntityFromDatabaseArray(array $data)
192 192
     {
193 193
         $entity = new StatCacheLogsEntity();
194
-        $entity->cacheId = (int) $data['cache_id'];
195
-        $entity->userId = (int) $data['user_id'];
194
+        $entity->cacheId = (int)$data['cache_id'];
195
+        $entity->userId = (int)$data['user_id'];
196 196
         $entity->found = $data['found'];
197 197
         $entity->notfound = $data['notfound'];
198 198
         $entity->note = $data['note'];
Please login to merge, or discard this patch.
local/devel/Repositories/ReplicationOverwriteRepository.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 ReplicationOverwriteEntity();
191
-        $entity->id = (int) $data['id'];
192
-        $entity->type = (int) $data['type'];
193
-        $entity->value = (string) $data['value'];
194
-        $entity->uuid = (string) $data['uuid'];
191
+        $entity->id = (int)$data['id'];
192
+        $entity->type = (int)$data['type'];
193
+        $entity->value = (string)$data['value'];
194
+        $entity->uuid = (string)$data['uuid'];
195 195
 
196 196
         return $entity;
197 197
     }
Please login to merge, or discard this patch.
local/devel/Repositories/WatchesWaitingRepository.php 1 patch
Spacing   +7 added lines, -7 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
     }
@@ -191,13 +191,13 @@  discard block
 block discarded – undo
191 191
     public function getEntityFromDatabaseArray(array $data)
192 192
     {
193 193
         $entity = new WatchesWaitingEntity();
194
-        $entity->id = (int) $data['id'];
195
-        $entity->userId = (int) $data['user_id'];
196
-        $entity->objectId = (int) $data['object_id'];
197
-        $entity->objectType = (int) $data['object_type'];
194
+        $entity->id = (int)$data['id'];
195
+        $entity->userId = (int)$data['user_id'];
196
+        $entity->objectId = (int)$data['object_id'];
197
+        $entity->objectType = (int)$data['object_type'];
198 198
         $entity->dateCreated = new DateTime($data['date_created']);
199
-        $entity->watchtext = (string) $data['watchtext'];
200
-        $entity->watchtype = (int) $data['watchtype'];
199
+        $entity->watchtext = (string)$data['watchtext'];
200
+        $entity->watchtype = (int)$data['watchtype'];
201 201
 
202 202
         return $entity;
203 203
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheLogsModifiedRepository.php 1 patch
Spacing   +12 added lines, -12 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
     }
@@ -201,22 +201,22 @@  discard block
 block discarded – undo
201 201
     public function getEntityFromDatabaseArray(array $data)
202 202
     {
203 203
         $entity = new GeoCacheLogsModifiedEntity();
204
-        $entity->id = (int) $data['id'];
205
-        $entity->uuid = (string) $data['uuid'];
206
-        $entity->node = (int) $data['node'];
204
+        $entity->id = (int)$data['id'];
205
+        $entity->uuid = (string)$data['uuid'];
206
+        $entity->node = (int)$data['node'];
207 207
         $entity->dateCreated = new DateTime($data['date_created']);
208 208
         $entity->entryLastModified = new DateTime($data['entry_last_modified']);
209 209
         $entity->lastModified = new DateTime($data['last_modified']);
210 210
         $entity->logLastModified = new DateTime($data['log_last_modified']);
211
-        $entity->cacheId = (int) $data['cache_id'];
212
-        $entity->userId = (int) $data['user_id'];
213
-        $entity->type = (int) $data['type'];
214
-        $entity->ocTeamComment = (int) $data['oc_team_comment'];
211
+        $entity->cacheId = (int)$data['cache_id'];
212
+        $entity->userId = (int)$data['user_id'];
213
+        $entity->type = (int)$data['type'];
214
+        $entity->ocTeamComment = (int)$data['oc_team_comment'];
215 215
         $entity->date = new DateTime($data['date']);
216
-        $entity->needsMaintenance = (int) $data['needs_maintenance'];
217
-        $entity->listingOutdated = (int) $data['listing_outdated'];
218
-        $entity->text = (string) $data['text'];
219
-        $entity->textHtml = (int) $data['text_html'];
216
+        $entity->needsMaintenance = (int)$data['needs_maintenance'];
217
+        $entity->listingOutdated = (int)$data['listing_outdated'];
218
+        $entity->text = (string)$data['text'];
219
+        $entity->textHtml = (int)$data['text_html'];
220 220
         $entity->modifyDate = new DateTime($data['modify_date']);
221 221
 
222 222
         return $entity;
Please login to merge, or discard this patch.
local/devel/Repositories/LogentriesTypesRepository.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
     }
@@ -187,9 +187,9 @@  discard block
 block discarded – undo
187 187
     public function getEntityFromDatabaseArray(array $data)
188 188
     {
189 189
         $entity = new LogentriesTypesEntity();
190
-        $entity->id = (int) $data['id'];
191
-        $entity->module = (string) $data['module'];
192
-        $entity->eventname = (string) $data['eventname'];
190
+        $entity->id = (int)$data['id'];
191
+        $entity->module = (string)$data['module'];
192
+        $entity->eventname = (string)$data['eventname'];
193 193
 
194 194
         return $entity;
195 195
     }
Please login to merge, or discard this patch.