Completed
Push — development ( 9e3728...14ea30 )
by Thomas
20s queued 12s
created
local/devel/Repositories/MigrationVersionsRepository.php 1 patch
Spacing   +2 added lines, -2 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->version = (int) $this->connection->lastInsertId();
124
+        $entity->version = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     public function getEntityFromDatabaseArray(array $data)
186 186
     {
187 187
         $entity = new MigrationVersionsEntity();
188
-        $entity->version = (string) $data['version'];
188
+        $entity->version = (string)$data['version'];
189 189
 
190 190
         return $entity;
191 191
     }
Please login to merge, or discard this patch.
local/devel/Repositories/GeodbIntdataRepository.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->locId = (int) $this->connection->lastInsertId();
124
+        $entity->locId = (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 GeodbIntdataEntity();
195
-        $entity->locId = (int) $data['loc_id'];
196
-        $entity->intVal = (int) $data['int_val'];
197
-        $entity->intType = (int) $data['int_type'];
198
-        $entity->intSubtype = (int) $data['int_subtype'];
195
+        $entity->locId = (int)$data['loc_id'];
196
+        $entity->intVal = (int)$data['int_val'];
197
+        $entity->intType = (int)$data['int_type'];
198
+        $entity->intSubtype = (int)$data['int_subtype'];
199 199
         $entity->validSince = new DateTime($data['valid_since']);
200
-        $entity->dateTypeSince = (int) $data['date_type_since'];
200
+        $entity->dateTypeSince = (int)$data['date_type_since'];
201 201
         $entity->validUntil = new DateTime($data['valid_until']);
202
-        $entity->dateTypeUntil = (int) $data['date_type_until'];
202
+        $entity->dateTypeUntil = (int)$data['date_type_until'];
203 203
 
204 204
         return $entity;
205 205
     }
Please login to merge, or discard this patch.
local/devel/Repositories/XmlsessionDataRepository.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->sessionId = (int) $this->connection->lastInsertId();
124
+        $entity->sessionId = (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 XmlsessionDataEntity();
190
-        $entity->sessionId = (int) $data['session_id'];
191
-        $entity->objectType = (int) $data['object_type'];
192
-        $entity->objectId = (int) $data['object_id'];
190
+        $entity->sessionId = (int)$data['session_id'];
191
+        $entity->objectType = (int)$data['object_type'];
192
+        $entity->objectId = (int)$data['object_id'];
193 193
 
194 194
         return $entity;
195 195
     }
Please login to merge, or discard this patch.
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.