Completed
Pull Request — development (#840)
by
unknown
01:00
created
htdocs_symfony/src/Repository/CacheLogsArchivedRepository.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
             $databaseArray
144 144
         );
145 145
 
146
-        $entity->id = (int) $this->connection->lastInsertId();
146
+        $entity->id = (int)$this->connection->lastInsertId();
147 147
 
148 148
         return $entity;
149 149
     }
@@ -240,30 +240,30 @@  discard block
 block discarded – undo
240 240
     public function getEntityFromDatabaseArray(array $data)
241 241
     {
242 242
         $entity = new GeoCacheLogsArchivedEntity();
243
-        $entity->id = (int) $data['id'];
244
-        $entity->uuid = (string) $data['uuid'];
245
-        $entity->node = (int) $data['node'];
243
+        $entity->id = (int)$data['id'];
244
+        $entity->uuid = (string)$data['uuid'];
245
+        $entity->node = (int)$data['node'];
246 246
         $entity->dateCreated = new DateTime($data['date_created']);
247 247
         $entity->entryLastModified = new DateTime($data['entry_last_modified']);
248 248
         $entity->lastModified = date('Y-m-d H:i:s');
249
-        $entity->okapiSyncbase = (string) $data['okapi_syncbase'];
249
+        $entity->okapiSyncbase = (string)$data['okapi_syncbase'];
250 250
         $entity->logLastModified = new DateTime($data['log_last_modified']);
251
-        $entity->cacheId = (int) $data['cache_id'];
252
-        $entity->userId = (int) $data['user_id'];
253
-        $entity->type = (int) $data['type'];
254
-        $entity->ocTeamComment = (int) $data['oc_team_comment'];
251
+        $entity->cacheId = (int)$data['cache_id'];
252
+        $entity->userId = (int)$data['user_id'];
253
+        $entity->type = (int)$data['type'];
254
+        $entity->ocTeamComment = (int)$data['oc_team_comment'];
255 255
         $entity->date = new DateTime($data['date']);
256 256
         $entity->orderDate = new DateTime($data['order_date']);
257
-        $entity->needsMaintenance = (int) $data['needs_maintenance'];
258
-        $entity->listingOutdated = (int) $data['listing_outdated'];
259
-        $entity->text = (string) $data['text'];
260
-        $entity->textHtml = (int) $data['text_html'];
261
-        $entity->textHtmledit = (int) $data['text_htmledit'];
262
-        $entity->ownerNotified = (int) $data['owner_notified'];
257
+        $entity->needsMaintenance = (int)$data['needs_maintenance'];
258
+        $entity->listingOutdated = (int)$data['listing_outdated'];
259
+        $entity->text = (string)$data['text'];
260
+        $entity->textHtml = (int)$data['text_html'];
261
+        $entity->textHtmledit = (int)$data['text_htmledit'];
262
+        $entity->ownerNotified = (int)$data['owner_notified'];
263 263
         $entity->picture = $data['picture'];
264 264
         $entity->deletionDate = new DateTime($data['deletion_date']);
265
-        $entity->deletedBy = (int) $data['deleted_by'];
266
-        $entity->restoredBy = (int) $data['restored_by'];
265
+        $entity->deletedBy = (int)$data['deleted_by'];
266
+        $entity->restoredBy = (int)$data['restored_by'];
267 267
 
268 268
         return $entity;
269 269
     }
Please login to merge, or discard this patch.
htdocs_symfony/src/Repository/SupportListingInfosRepository.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
             $databaseArray
149 149
         );
150 150
 
151
-        $entity->id = (int) $this->connection->lastInsertId();
151
+        $entity->id = (int)$this->connection->lastInsertId();
152 152
 
153 153
         return $entity;
154 154
     }
@@ -237,22 +237,22 @@  discard block
 block discarded – undo
237 237
     public function getEntityFromDatabaseArray(array $data)
238 238
     : SupportListingInfosEntity {
239 239
         $entity = new SupportListingInfosEntity();
240
-        $entity->id = (array_key_exists('id', $data)) ? (int) $data['id'] : NULL;
241
-        $entity->wpOc = (string) $data['wp_oc'];
242
-        $entity->nodeId = (int) $data['node_id'];
243
-        $entity->nodeOwnerId = (string) $data['node_owner_id'];
244
-        $entity->nodeListingId = (string) $data['node_listing_id'];
245
-        $entity->nodeListingWp = (string) $data['node_listing_wp'];
246
-        $entity->nodeListingName = (string) $data['node_listing_name'];
247
-        $entity->nodeListingSize = (int) $data['node_listing_size'];
248
-        $entity->nodeListingDifficulty = (int) $data['node_listing_difficulty'];
249
-        $entity->nodeListingTerrain = (int) $data['node_listing_terrain'];
250
-        $entity->nodeListingCoordinatesLon = (double) $data['node_listing_coordinates_lon'];
251
-        $entity->nodeListingCoordinatesLat = (double) $data['node_listing_coordinates_lat'];
252
-        $entity->nodeListingAvailable = (bool) $data['node_listing_available'];
253
-        $entity->nodeListingArchived = (bool) $data['node_listing_archived'];
240
+        $entity->id = (array_key_exists('id', $data)) ? (int)$data['id'] : NULL;
241
+        $entity->wpOc = (string)$data['wp_oc'];
242
+        $entity->nodeId = (int)$data['node_id'];
243
+        $entity->nodeOwnerId = (string)$data['node_owner_id'];
244
+        $entity->nodeListingId = (string)$data['node_listing_id'];
245
+        $entity->nodeListingWp = (string)$data['node_listing_wp'];
246
+        $entity->nodeListingName = (string)$data['node_listing_name'];
247
+        $entity->nodeListingSize = (int)$data['node_listing_size'];
248
+        $entity->nodeListingDifficulty = (int)$data['node_listing_difficulty'];
249
+        $entity->nodeListingTerrain = (int)$data['node_listing_terrain'];
250
+        $entity->nodeListingCoordinatesLon = (double)$data['node_listing_coordinates_lon'];
251
+        $entity->nodeListingCoordinatesLat = (double)$data['node_listing_coordinates_lat'];
252
+        $entity->nodeListingAvailable = (bool)$data['node_listing_available'];
253
+        $entity->nodeListingArchived = (bool)$data['node_listing_archived'];
254 254
         $entity->lastModified = date('Y-m-d H:i:s');
255
-        $entity->importStatus = (int) $data['importstatus'];
255
+        $entity->importStatus = (int)$data['importstatus'];
256 256
         $entity->node = $this->nodesRepository->fetchOneBy(['id' => $entity->nodeId]);
257 257
 
258 258
         return $entity;
Please login to merge, or discard this patch.
htdocs_symfony/src/Repository/SupportUserCommentsRepository.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
             $databaseArray
146 146
         );
147 147
 
148
-        $entity->id = (int) $this->connection->lastInsertId();
148
+        $entity->id = (int)$this->connection->lastInsertId();
149 149
 
150 150
         return $entity;
151 151
     }
@@ -223,11 +223,11 @@  discard block
 block discarded – undo
223 223
     public function getEntityFromDatabaseArray(array $data)
224 224
     : SupportUserCommentsEntity {
225 225
         $entity = new SupportUserCommentsEntity(0);
226
-        $entity->id = (int) $data['id'];
227
-        $entity->ocUserId = (int) $data['oc_user_id'];
226
+        $entity->id = (int)$data['id'];
227
+        $entity->ocUserId = (int)$data['oc_user_id'];
228 228
         $entity->user = $this->userRepository->fetchOneById($entity->ocUserId);
229
-        $entity->comment = (string) $data['comment'];
230
-        $entity->commentCreated = (string) $data['comment_created'];
229
+        $entity->comment = (string)$data['comment'];
230
+        $entity->commentCreated = (string)$data['comment_created'];
231 231
         $entity->commentLastModified = date('Y-m-d H:i:s');
232 232
 
233 233
         return $entity;
Please login to merge, or discard this patch.