Completed
Push — next ( 8119eb...ae8da3 )
by Thomas
19s queued 12s
created
local/devel/Repositories/RemovedObjectsRepository.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
     }
@@ -190,12 +190,12 @@  discard block
 block discarded – undo
190 190
     public function getEntityFromDatabaseArray(array $data)
191 191
     {
192 192
         $entity = new RemovedObjectsEntity();
193
-        $entity->id = (int) $data['id'];
194
-        $entity->localID = (int) $data['localID'];
195
-        $entity->uuid = (string) $data['uuid'];
196
-        $entity->type = (int) $data['type'];
193
+        $entity->id = (int)$data['id'];
194
+        $entity->localID = (int)$data['localID'];
195
+        $entity->uuid = (string)$data['uuid'];
196
+        $entity->type = (int)$data['type'];
197 197
         $entity->removedDate = new DateTime($data['removed_date']);
198
-        $entity->node = (int) $data['node'];
198
+        $entity->node = (int)$data['node'];
199 199
 
200 200
         return $entity;
201 201
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheReportStatusRepository.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 GeoCacheReportStatusEntity();
190
-        $entity->id = (int) $data['id'];
191
-        $entity->name = (string) $data['name'];
192
-        $entity->transId = (int) $data['trans_id'];
190
+        $entity->id = (int)$data['id'];
191
+        $entity->name = (string)$data['name'];
192
+        $entity->transId = (int)$data['trans_id'];
193 193
 
194 194
         return $entity;
195 195
     }
Please login to merge, or discard this patch.
local/devel/Repositories/NutsLayerRepository.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
     }
@@ -188,9 +188,9 @@  discard block
 block discarded – undo
188 188
     public function getEntityFromDatabaseArray(array $data)
189 189
     {
190 190
         $entity = new NutsLayerEntity();
191
-        $entity->id = (int) $data['id'];
192
-        $entity->level = (int) $data['level'];
193
-        $entity->code = (string) $data['code'];
191
+        $entity->id = (int)$data['id'];
192
+        $entity->level = (int)$data['level'];
193
+        $entity->code = (string)$data['code'];
194 194
         $entity->shape = $data['shape'];
195 195
 
196 196
         return $entity;
Please login to merge, or discard this patch.
local/devel/Repositories/GkItemTypeRepository.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 GkItemTypeEntity();
189
-        $entity->id = (int) $data['id'];
190
-        $entity->name = (string) $data['name'];
189
+        $entity->id = (int)$data['id'];
190
+        $entity->name = (string)$data['name'];
191 191
 
192 192
         return $entity;
193 193
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheVisitsRepository.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
     }
@@ -188,8 +188,8 @@  discard block
 block discarded – undo
188 188
     public function getEntityFromDatabaseArray(array $data)
189 189
     {
190 190
         $entity = new GeoCacheVisitsEntity();
191
-        $entity->cacheId = (int) $data['cache_id'];
192
-        $entity->userIdIp = (string) $data['user_id_ip'];
191
+        $entity->cacheId = (int)$data['cache_id'];
192
+        $entity->userIdIp = (string)$data['user_id_ip'];
193 193
         $entity->count = $data['count'];
194 194
         $entity->lastModified = new DateTime($data['last_modified']);
195 195
 
Please login to merge, or discard this patch.
local/devel/Repositories/OkapiCacheRepository.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->key = (int) $this->connection->lastInsertId();
124
+        $entity->key = (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 OkapiCacheEntity();
191
-        $entity->key = (string) $data['key'];
191
+        $entity->key = (string)$data['key'];
192 192
         $entity->score = $data['score'];
193 193
         $entity->expires = new DateTime($data['expires']);
194
-        $entity->value = (string) $data['value'];
194
+        $entity->value = (string)$data['value'];
195 195
 
196 196
         return $entity;
197 197
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CountriesOptionsRepository.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->country = (int) $this->connection->lastInsertId();
124
+        $entity->country = (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 CountriesOptionsEntity();
193
-        $entity->country = (string) $data['country'];
194
-        $entity->display = (int) $data['display'];
193
+        $entity->country = (string)$data['country'];
194
+        $entity->display = (int)$data['display'];
195 195
         $entity->gmLat = $data['gmLat'];
196 196
         $entity->gmLon = $data['gmLon'];
197
-        $entity->gmZoom = (int) $data['gmZoom'];
198
-        $entity->nodeId = (int) $data['nodeId'];
197
+        $entity->gmZoom = (int)$data['gmZoom'];
198
+        $entity->nodeId = (int)$data['nodeId'];
199 199
 
200 200
         return $entity;
201 201
     }
Please login to merge, or discard this patch.
local/devel/Repositories/SysTransRefRepository.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->transId = (int) $this->connection->lastInsertId();
124
+        $entity->transId = (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 SysTransRefEntity();
190
-        $entity->transId = (int) $data['trans_id'];
191
-        $entity->resourceName = (string) $data['resource_name'];
192
-        $entity->line = (int) $data['line'];
190
+        $entity->transId = (int)$data['trans_id'];
191
+        $entity->resourceName = (string)$data['resource_name'];
192
+        $entity->line = (int)$data['line'];
193 193
 
194 194
         return $entity;
195 195
     }
Please login to merge, or discard this patch.
local/devel/Repositories/OkapiTileCachesRepository.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->z = (int) $this->connection->lastInsertId();
124
+        $entity->z = (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 OkapiTileCachesEntity();
198
-        $entity->z = (int) $data['z'];
199
-        $entity->x = (int) $data['x'];
200
-        $entity->y = (int) $data['y'];
201
-        $entity->cacheId = (int) $data['cache_id'];
202
-        $entity->z21x = (int) $data['z21x'];
203
-        $entity->z21y = (int) $data['z21y'];
204
-        $entity->status = (int) $data['status'];
205
-        $entity->type = (int) $data['type'];
206
-        $entity->rating = (int) $data['rating'];
207
-        $entity->flags = (int) $data['flags'];
208
-        $entity->nameCrc = (int) $data['name_crc'];
198
+        $entity->z = (int)$data['z'];
199
+        $entity->x = (int)$data['x'];
200
+        $entity->y = (int)$data['y'];
201
+        $entity->cacheId = (int)$data['cache_id'];
202
+        $entity->z21x = (int)$data['z21x'];
203
+        $entity->z21y = (int)$data['z21y'];
204
+        $entity->status = (int)$data['status'];
205
+        $entity->type = (int)$data['type'];
206
+        $entity->rating = (int)$data['rating'];
207
+        $entity->flags = (int)$data['flags'];
208
+        $entity->nameCrc = (int)$data['name_crc'];
209 209
 
210 210
         return $entity;
211 211
     }
Please login to merge, or discard this patch.