Completed
Push — development ( 9e3728...14ea30 )
by Thomas
20s queued 12s
created
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.
local/devel/Repositories/MapresultRepository.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->queryId = (int) $this->connection->lastInsertId();
124
+        $entity->queryId = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     public function getEntityFromDatabaseArray(array $data)
187 187
     {
188 188
         $entity = new MapresultEntity();
189
-        $entity->queryId = (int) $data['query_id'];
189
+        $entity->queryId = (int)$data['query_id'];
190 190
         $entity->dateCreated = new DateTime($data['date_created']);
191 191
 
192 192
         return $entity;
Please login to merge, or discard this patch.
local/devel/Repositories/AttributeCategoriesRepository.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 AttributeCategoriesEntity();
191
-        $entity->id = (int) $data['id'];
192
-        $entity->name = (string) $data['name'];
193
-        $entity->transId = (int) $data['trans_id'];
194
-        $entity->color = (string) $data['color'];
191
+        $entity->id = (int)$data['id'];
192
+        $entity->name = (string)$data['name'];
193
+        $entity->transId = (int)$data['trans_id'];
194
+        $entity->color = (string)$data['color'];
195 195
 
196 196
         return $entity;
197 197
     }
Please login to merge, or discard this patch.
local/devel/Repositories/CacheLocationRepository.php 1 patch
Spacing   +10 added lines, -10 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
     }
@@ -194,16 +194,16 @@  discard block
 block discarded – undo
194 194
     public function getEntityFromDatabaseArray(array $data)
195 195
     {
196 196
         $entity = new GeoCacheLocationEntity();
197
-        $entity->cacheId = (int) $data['cache_id'];
197
+        $entity->cacheId = (int)$data['cache_id'];
198 198
         $entity->lastModified = new DateTime($data['last_modified']);
199
-        $entity->adm1 = (string) $data['adm1'];
200
-        $entity->adm2 = (string) $data['adm2'];
201
-        $entity->adm3 = (string) $data['adm3'];
202
-        $entity->adm4 = (string) $data['adm4'];
203
-        $entity->code1 = (string) $data['code1'];
204
-        $entity->code2 = (string) $data['code2'];
205
-        $entity->code3 = (string) $data['code3'];
206
-        $entity->code4 = (string) $data['code4'];
199
+        $entity->adm1 = (string)$data['adm1'];
200
+        $entity->adm2 = (string)$data['adm2'];
201
+        $entity->adm3 = (string)$data['adm3'];
202
+        $entity->adm4 = (string)$data['adm4'];
203
+        $entity->code1 = (string)$data['code1'];
204
+        $entity->code2 = (string)$data['code2'];
205
+        $entity->code3 = (string)$data['code3'];
206
+        $entity->code4 = (string)$data['code4'];
207 207
 
208 208
         return $entity;
209 209
     }
Please login to merge, or discard this patch.
local/devel/Repositories/SysCronRepository.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->name = (int) $this->connection->lastInsertId();
124
+        $entity->name = (int)$this->connection->lastInsertId();
125 125
 
126 126
         return $entity;
127 127
     }
@@ -186,7 +186,7 @@  discard block
 block discarded – undo
186 186
     public function getEntityFromDatabaseArray(array $data)
187 187
     {
188 188
         $entity = new SysCronEntity();
189
-        $entity->name = (string) $data['name'];
189
+        $entity->name = (string)$data['name'];
190 190
         $entity->lastRun = new DateTime($data['last_run']);
191 191
 
192 192
         return $entity;
Please login to merge, or discard this patch.
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.