Completed
Pull Request — development (#769)
by Nick
04:21
created
local/devel/Repositories/OkapiClogRepository.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 OkapiClogEntity();
189
-        $entity->id = (int) $data['id'];
190
-        $entity->data = (string) $data['data'];
189
+        $entity->id = (int)$data['id'];
190
+        $entity->data = (string)$data['data'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/Map2DataRepository.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->resultId = (int) $this->connection->lastInsertId();
124
+        $entity->resultId = (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 Map2DataEntity();
189
-        $entity->resultId = (int) $data['result_id'];
190
-        $entity->cacheId = (int) $data['cache_id'];
189
+        $entity->resultId = (int)$data['result_id'];
190
+        $entity->cacheId = (int)$data['cache_id'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheListItemsRepository.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->cacheListId = (int) $this->connection->lastInsertId();
124
+        $entity->cacheListId = (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 GeoCacheListItemsEntity();
189
-        $entity->cacheListId = (int) $data['cache_list_id'];
190
-        $entity->cacheId = (int) $data['cache_id'];
189
+        $entity->cacheListId = (int)$data['cache_list_id'];
190
+        $entity->cacheId = (int)$data['cache_id'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/OkapiConsumersRepository.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->key = (int) $this->connection->lastInsertId();
124
+        $entity->key = (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 OkapiConsumersEntity();
194
-        $entity->key = (string) $data['key'];
195
-        $entity->name = (string) $data['name'];
196
-        $entity->secret = (string) $data['secret'];
197
-        $entity->url = (string) $data['url'];
198
-        $entity->email = (string) $data['email'];
194
+        $entity->key = (string)$data['key'];
195
+        $entity->name = (string)$data['name'];
196
+        $entity->secret = (string)$data['secret'];
197
+        $entity->url = (string)$data['url'];
198
+        $entity->email = (string)$data['email'];
199 199
         $entity->dateCreated = new DateTime($data['date_created']);
200
-        $entity->bflags = (int) $data['bflags'];
200
+        $entity->bflags = (int)$data['bflags'];
201 201
 
202 202
         return $entity;
203 203
     }
Please login to merge, or discard this patch.
local/devel/Repositories/NodesRepository.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 NodesEntity();
191
-        $entity->id = (int) $data['id'];
192
-        $entity->name = (string) $data['name'];
193
-        $entity->url = (string) $data['url'];
194
-        $entity->waypointPrefix = (string) $data['waypoint_prefix'];
191
+        $entity->id = (int)$data['id'];
192
+        $entity->name = (string)$data['name'];
193
+        $entity->url = (string)$data['url'];
194
+        $entity->waypointPrefix = (string)$data['waypoint_prefix'];
195 195
 
196 196
         return $entity;
197 197
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CountriesListDefaultRepository.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->lang = (int) $this->connection->lastInsertId();
124
+        $entity->lang = (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 CountriesListDefaultEntity();
189
-        $entity->lang = (string) $data['lang'];
190
-        $entity->show = (string) $data['show'];
189
+        $entity->lang = (string)$data['lang'];
190
+        $entity->show = (string)$data['show'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/Mp3Repository.php 1 patch
Spacing   +9 added lines, -9 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
     }
@@ -195,17 +195,17 @@  discard block
 block discarded – undo
195 195
     public function getEntityFromDatabaseArray(array $data)
196 196
     {
197 197
         $entity = new Mp3Entity();
198
-        $entity->id = (int) $data['id'];
199
-        $entity->uuid = (string) $data['uuid'];
200
-        $entity->node = (int) $data['node'];
198
+        $entity->id = (int)$data['id'];
199
+        $entity->uuid = (string)$data['uuid'];
200
+        $entity->node = (int)$data['node'];
201 201
         $entity->dateCreated = new DateTime($data['date_created']);
202 202
         $entity->lastModified = new DateTime($data['last_modified']);
203
-        $entity->url = (string) $data['url'];
204
-        $entity->title = (string) $data['title'];
203
+        $entity->url = (string)$data['url'];
204
+        $entity->title = (string)$data['title'];
205 205
         $entity->lastUrlCheck = new DateTime($data['last_url_check']);
206
-        $entity->objectId = (int) $data['object_id'];
207
-        $entity->local = (int) $data['local'];
208
-        $entity->unknownFormat = (int) $data['unknown_format'];
206
+        $entity->objectId = (int)$data['object_id'];
207
+        $entity->local = (int)$data['local'];
208
+        $entity->unknownFormat = (int)$data['unknown_format'];
209 209
 
210 210
         return $entity;
211 211
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheLogtypeRepository.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->cacheTypeId = (int) $this->connection->lastInsertId();
124
+        $entity->cacheTypeId = (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 GeoCacheLogtypeEntity();
189
-        $entity->cacheTypeId = (int) $data['cache_type_id'];
190
-        $entity->logTypeId = (int) $data['log_type_id'];
189
+        $entity->cacheTypeId = (int)$data['cache_type_id'];
190
+        $entity->logTypeId = (int)$data['log_type_id'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/OkapiStatsHourlyRepository.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->consumerKey = (int) $this->connection->lastInsertId();
124
+        $entity->consumerKey = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -192,12 +192,12 @@  discard block
 block discarded – undo
192 192
     public function getEntityFromDatabaseArray(array $data)
193 193
     {
194 194
         $entity = new OkapiStatsHourlyEntity();
195
-        $entity->consumerKey = (string) $data['consumer_key'];
196
-        $entity->userId = (int) $data['user_id'];
195
+        $entity->consumerKey = (string)$data['consumer_key'];
196
+        $entity->userId = (int)$data['user_id'];
197 197
         $entity->periodStart = new DateTime($data['period_start']);
198
-        $entity->serviceName = (string) $data['service_name'];
199
-        $entity->totalCalls = (int) $data['total_calls'];
200
-        $entity->httpCalls = (int) $data['http_calls'];
198
+        $entity->serviceName = (string)$data['service_name'];
199
+        $entity->totalCalls = (int)$data['total_calls'];
200
+        $entity->httpCalls = (int)$data['http_calls'];
201 201
         $entity->totalRuntime = $data['total_runtime'];
202 202
         $entity->httpRuntime = $data['http_runtime'];
203 203
 
Please login to merge, or discard this patch.