@@ -141,7 +141,7 @@ discard block |
||
| 141 | 141 | $databaseArray |
| 142 | 142 | ); |
| 143 | 143 | |
| 144 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
| 144 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
| 145 | 145 | |
| 146 | 146 | return $entity; |
| 147 | 147 | } |
@@ -219,11 +219,11 @@ discard block |
||
| 219 | 219 | public function getEntityFromDatabaseArray(array $data) |
| 220 | 220 | : SupportListingCommentsEntity { |
| 221 | 221 | $entity = new SupportListingCommentsEntity(''); |
| 222 | - $entity->id = (int) $data['id']; |
|
| 223 | - $entity->wpOc = (string) $data['wp_oc']; |
|
| 224 | - $entity->comment = (string) $data['comment']; |
|
| 225 | - $entity->commentCreated = (string) $data['comment_created']; |
|
| 226 | - $entity->commentLastModified = (string) $data['comment_last_modified']; |
|
| 222 | + $entity->id = (int)$data['id']; |
|
| 223 | + $entity->wpOc = (string)$data['wp_oc']; |
|
| 224 | + $entity->comment = (string)$data['comment']; |
|
| 225 | + $entity->commentCreated = (string)$data['comment_created']; |
|
| 226 | + $entity->commentLastModified = (string)$data['comment_last_modified']; |
|
| 227 | 227 | |
| 228 | 228 | return $entity; |
| 229 | 229 | } |
@@ -140,7 +140,7 @@ discard block |
||
| 140 | 140 | $databaseArray |
| 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 | } |
@@ -216,10 +216,10 @@ discard block |
||
| 216 | 216 | public function getEntityFromDatabaseArray(array $data) |
| 217 | 217 | : SupportBonuscachesEntity { |
| 218 | 218 | $entity = new SupportBonuscachesEntity(); |
| 219 | - $entity->id = (int) $data['id']; |
|
| 220 | - $entity->wpOc = (string) $data['wp_oc']; |
|
| 221 | - $entity->isBonusCache = (bool) $data['is_bonus_cache']; |
|
| 222 | - $entity->belongsToBonusCache = (string) $data['belongs_to_bonus_cache']; |
|
| 219 | + $entity->id = (int)$data['id']; |
|
| 220 | + $entity->wpOc = (string)$data['wp_oc']; |
|
| 221 | + $entity->isBonusCache = (bool)$data['is_bonus_cache']; |
|
| 222 | + $entity->belongsToBonusCache = (string)$data['belongs_to_bonus_cache']; |
|
| 223 | 223 | |
| 224 | 224 | return $entity; |
| 225 | 225 | } |
@@ -143,7 +143,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | $databaseArray |
| 183 | 183 | ); |
| 184 | 184 | |
| 185 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
| 185 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
| 186 | 186 | |
| 187 | 187 | return $entity; |
| 188 | 188 | } |
@@ -266,16 +266,16 @@ discard block |
||
| 266 | 266 | { |
| 267 | 267 | |
| 268 | 268 | $entity = new GeoCacheReportsEntity(); |
| 269 | - $entity->id = (int) $data['id']; |
|
| 269 | + $entity->id = (int)$data['id']; |
|
| 270 | 270 | $entity->dateCreated = new DateTime($data['date_created']); |
| 271 | - $entity->cacheid = (int) $data['cacheid']; |
|
| 272 | - $entity->userid = (int) $data['userid']; |
|
| 273 | - $entity->reason = (int) $data['reason']; |
|
| 274 | - $entity->note = (string) $data['note']; |
|
| 275 | - $entity->status = (int) $data['status']; |
|
| 276 | - $entity->adminid = (int) $data['adminid']; |
|
| 271 | + $entity->cacheid = (int)$data['cacheid']; |
|
| 272 | + $entity->userid = (int)$data['userid']; |
|
| 273 | + $entity->reason = (int)$data['reason']; |
|
| 274 | + $entity->note = (string)$data['note']; |
|
| 275 | + $entity->status = (int)$data['status']; |
|
| 276 | + $entity->adminid = (int)$data['adminid']; |
|
| 277 | 277 | $entity->lastmodified = date('Y-m-d H:i:s'); |
| 278 | - $entity->comment = (string) $data['comment']; |
|
| 278 | + $entity->comment = (string)$data['comment']; |
|
| 279 | 279 | $entity->cache = $this->cachesRepository->fetchOneBy(['cache_id' => $entity->cacheid]); |
| 280 | 280 | $entity->user = $this->userRepository->fetchOneById($entity->userid); |
| 281 | 281 | if ($entity->adminid) $entity->admin = $this->userRepository->fetchOneById($entity->adminid); |
@@ -145,7 +145,7 @@ discard block |
||
| 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 |
||
| 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; |
@@ -144,7 +144,7 @@ discard block |
||
| 144 | 144 | $databaseArray |
| 145 | 145 | ); |
| 146 | 146 | |
| 147 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
| 147 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
| 148 | 148 | |
| 149 | 149 | return $entity; |
| 150 | 150 | } |
@@ -220,10 +220,10 @@ discard block |
||
| 220 | 220 | public function getEntityFromDatabaseArray(array $data) : NodesEntity |
| 221 | 221 | { |
| 222 | 222 | $entity = new NodesEntity(); |
| 223 | - $entity->id = (int) $data['id']; |
|
| 224 | - $entity->name = (string) $data['name']; |
|
| 225 | - $entity->url = (string) $data['url']; |
|
| 226 | - $entity->waypointPrefix = (string) $data['waypoint_prefix']; |
|
| 223 | + $entity->id = (int)$data['id']; |
|
| 224 | + $entity->name = (string)$data['name']; |
|
| 225 | + $entity->url = (string)$data['url']; |
|
| 226 | + $entity->waypointPrefix = (string)$data['waypoint_prefix']; |
|
| 227 | 227 | |
| 228 | 228 | return $entity; |
| 229 | 229 | } |
@@ -152,7 +152,7 @@ discard block |
||
| 152 | 152 | $databaseArray |
| 153 | 153 | ); |
| 154 | 154 | |
| 155 | - $entity->id = (int) $this->connection->lastInsertId(); |
|
| 155 | + $entity->id = (int)$this->connection->lastInsertId(); |
|
| 156 | 156 | |
| 157 | 157 | return $entity; |
| 158 | 158 | } |
@@ -241,22 +241,22 @@ discard block |
||
| 241 | 241 | public function getEntityFromDatabaseArray(array $data) |
| 242 | 242 | : SupportListingInfosEntity { |
| 243 | 243 | $entity = new SupportListingInfosEntity(); |
| 244 | - $entity->id = ((int) $data['id']) ?? NULL; |
|
| 245 | - $entity->wpOc = (string) $data['wp_oc']; |
|
| 246 | - $entity->nodeId = (int) $data['node_id']; |
|
| 247 | - $entity->nodeOwnerId = (string) $data['node_owner_id']; |
|
| 248 | - $entity->nodeListingId = (string) $data['node_listing_id']; |
|
| 249 | - $entity->nodeListingWp = (string) $data['node_listing_wp']; |
|
| 250 | - $entity->nodeListingName = (string) $data['node_listing_name']; |
|
| 251 | - $entity->nodeListingSize = (int) $data['node_listing_size']; |
|
| 252 | - $entity->nodeListingDifficulty = (int) $data['node_listing_difficulty']; |
|
| 253 | - $entity->nodeListingTerrain = (int) $data['node_listing_terrain']; |
|
| 254 | - $entity->nodeListingCoordinatesLon = (double) $data['node_listing_coordinates_lon']; |
|
| 255 | - $entity->nodeListingCoordinatesLat = (double) $data['node_listing_coordinates_lat']; |
|
| 256 | - $entity->nodeListingAvailable = (bool) $data['node_listing_available']; |
|
| 257 | - $entity->nodeListingArchived = (bool) $data['node_listing_archived']; |
|
| 244 | + $entity->id = ((int)$data['id']) ?? NULL; |
|
| 245 | + $entity->wpOc = (string)$data['wp_oc']; |
|
| 246 | + $entity->nodeId = (int)$data['node_id']; |
|
| 247 | + $entity->nodeOwnerId = (string)$data['node_owner_id']; |
|
| 248 | + $entity->nodeListingId = (string)$data['node_listing_id']; |
|
| 249 | + $entity->nodeListingWp = (string)$data['node_listing_wp']; |
|
| 250 | + $entity->nodeListingName = (string)$data['node_listing_name']; |
|
| 251 | + $entity->nodeListingSize = (int)$data['node_listing_size']; |
|
| 252 | + $entity->nodeListingDifficulty = (int)$data['node_listing_difficulty']; |
|
| 253 | + $entity->nodeListingTerrain = (int)$data['node_listing_terrain']; |
|
| 254 | + $entity->nodeListingCoordinatesLon = (double)$data['node_listing_coordinates_lon']; |
|
| 255 | + $entity->nodeListingCoordinatesLat = (double)$data['node_listing_coordinates_lat']; |
|
| 256 | + $entity->nodeListingAvailable = (bool)$data['node_listing_available']; |
|
| 257 | + $entity->nodeListingArchived = (bool)$data['node_listing_archived']; |
|
| 258 | 258 | $entity->lastModified = date('Y-m-d H:i:s'); |
| 259 | - $entity->importStatus = (int) $data['importstatus']; |
|
| 259 | + $entity->importStatus = (int)$data['importstatus']; |
|
| 260 | 260 | $entity->node = $this->nodesRepository->fetchOneBy(['id' => $entity->nodeId]); |
| 261 | 261 | |
| 262 | 262 | return $entity; |
@@ -246,10 +246,10 @@ discard block |
||
| 246 | 246 | $inputData = $formSQLFlex->getData(); |
| 247 | 247 | |
| 248 | 248 | $fetchedInformation = |
| 249 | - $this->executeSQL_flexible($inputData['content_WHAT'], $inputData['content_TABLE'], (string) $inputData['content_CONDITION']); |
|
| 249 | + $this->executeSQL_flexible($inputData['content_WHAT'], $inputData['content_TABLE'], (string)$inputData['content_CONDITION']); |
|
| 250 | 250 | |
| 251 | 251 | $countFetched = count($fetchedInformation); |
| 252 | - for ($i = 0; $i < $countFetched; $i ++) { |
|
| 252 | + for ($i = 0; $i < $countFetched; $i++) { |
|
| 253 | 253 | if (array_key_exists('password', $fetchedInformation[$i])) { |
| 254 | 254 | $fetchedInformation[$i]['password'] = '-'; |
| 255 | 255 | } |
@@ -425,18 +425,18 @@ discard block |
||
| 425 | 425 | $inputData = $form->getData(); |
| 426 | 426 | |
| 427 | 427 | if ($inputData['hidden_sender'] == 'textfield_cache_comment') { |
| 428 | - $entity = $this->supportListingCommentsRepository->fetchOneBy(['wp_oc' => (string) $inputData['hidden_ID2']]); |
|
| 428 | + $entity = $this->supportListingCommentsRepository->fetchOneBy(['wp_oc' => (string)$inputData['hidden_ID2']]); |
|
| 429 | 429 | $entity->comment = $inputData['content_comment_field']; |
| 430 | 430 | $this->supportListingCommentsRepository->update($entity); |
| 431 | 431 | } elseif ($inputData['hidden_sender'] == 'textfield_user_comment') { |
| 432 | - $entity = $this->supportUserCommentsRepository->fetchOneBy(['oc_user_id' => (int) $inputData['hidden_ID1']]); |
|
| 432 | + $entity = $this->supportUserCommentsRepository->fetchOneBy(['oc_user_id' => (int)$inputData['hidden_ID1']]); |
|
| 433 | 433 | $entity->comment = $inputData['content_comment_field']; |
| 434 | 434 | $this->supportUserCommentsRepository->update($entity); |
| 435 | 435 | } |
| 436 | 436 | |
| 437 | 437 | return $this->redirectToRoute('backend_support_occ', [ |
| 438 | - 'userID' => (string) $inputData['hidden_ID1'], |
|
| 439 | - 'wpID' => (string) $inputData['hidden_ID2'] |
|
| 438 | + 'userID' => (string)$inputData['hidden_ID1'], |
|
| 439 | + 'wpID' => (string)$inputData['hidden_ID2'] |
|
| 440 | 440 | ]); |
| 441 | 441 | } |
| 442 | 442 | |
@@ -459,7 +459,7 @@ discard block |
||
| 459 | 459 | if ($form->isSubmitted() && $form->isValid()) { |
| 460 | 460 | $inputData = $form->getData(); |
| 461 | 461 | |
| 462 | - $entity = $this->cacheReportsRepository->fetchOneBy(['id' => (int) $inputData['hidden_ID1']]); |
|
| 462 | + $entity = $this->cacheReportsRepository->fetchOneBy(['id' => (int)$inputData['hidden_ID1']]); |
|
| 463 | 463 | $entity->comment = $inputData['content_comment_field']; |
| 464 | 464 | |
| 465 | 465 | $this->cacheReportsRepository->update($entity); |
@@ -1009,7 +1009,7 @@ discard block |
||
| 1009 | 1009 | $entity = $this->supportListingInfosRepository->getEntityFromDatabaseArray($wpt); |
| 1010 | 1010 | $this->supportListingInfosRepository->create($entity); |
| 1011 | 1011 | |
| 1012 | - $amountAssignedCaches ++; |
|
| 1012 | + $amountAssignedCaches++; |
|
| 1013 | 1013 | } |
| 1014 | 1014 | } |
| 1015 | 1015 | |
@@ -57,8 +57,8 @@ discard block |
||
| 57 | 57 | private function ocOnly81_get_matrixData() |
| 58 | 58 | : array |
| 59 | 59 | { |
| 60 | - for ($i = 0; $i <= 8; $i ++) { |
|
| 61 | - for ($j = 0; $j <= 8; $j ++) { |
|
| 60 | + for ($i = 0; $i <= 8; $i++) { |
|
| 61 | + for ($j = 0; $j <= 8; $j++) { |
|
| 62 | 62 | $matrix[$i][$j] = 0; |
| 63 | 63 | $dsum[$i] = 0; |
| 64 | 64 | $tsum[$i] = 0; |
@@ -75,10 +75,10 @@ discard block |
||
| 75 | 75 | $data = $qb->execute()->fetchAll(); |
| 76 | 76 | |
| 77 | 77 | foreach ($data as $item) { |
| 78 | - $matrix[$item['difficulty'] - 2][$item['terrain'] - 2] ++; |
|
| 78 | + $matrix[$item['difficulty'] - 2][$item['terrain'] - 2]++; |
|
| 79 | 79 | } |
| 80 | 80 | |
| 81 | - for ($i = 0; $i <= 8; $i ++) { |
|
| 81 | + for ($i = 0; $i <= 8; $i++) { |
|
| 82 | 82 | $dsum[$i] = $dsum[$i] + array_sum($matrix[$i]); |
| 83 | 83 | $tsum[$i] = $tsum[$i] + array_sum(array_column($matrix, $i)); |
| 84 | 84 | } |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | 'count' => 1 |
| 119 | 119 | ]; |
| 120 | 120 | } else { |
| 121 | - $result[$item['user_id']]['count'] ++; |
|
| 121 | + $result[$item['user_id']]['count']++; |
|
| 122 | 122 | } |
| 123 | 123 | } |
| 124 | 124 | |