Completed
Push — development ( 4bdd6a...252715 )
by Thomas
20s queued 12s
created
htdocs_symfony/src/Repository/CachesAttributesRepository.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
             $databaseArray
128 128
         );
129 129
 
130
-        $entity->cacheId = (int) $this->connection->lastInsertId();
130
+        $entity->cacheId = (int)$this->connection->lastInsertId();
131 131
 
132 132
         return $entity;
133 133
     }
@@ -205,8 +205,8 @@  discard block
 block discarded – undo
205 205
     public function getEntityFromDatabaseArray(array $data): GeoCachesAttributesEntity
206 206
     {
207 207
         $entity = new GeoCachesAttributesEntity();
208
-        $entity->cacheId = (int) $data['cache_id'];
209
-        $entity->attribId = (int) $data['attrib_id'];
208
+        $entity->cacheId = (int)$data['cache_id'];
209
+        $entity->attribId = (int)$data['attrib_id'];
210 210
 
211 211
         return $entity;
212 212
     }
Please login to merge, or discard this patch.