Passed
Push — master ( 5c9096...cd0441 )
by Gabor
03:00
created
src/WebHemi/Application/EnvironmentManager.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -291,7 +291,7 @@
 block discarded – undo
291 291
                 || $this->checkDomainIsValid($applicationName, $applicationData, $subDirectory)
292 292
             ) {
293 293
                 $this->selectedModule = $applicationData['module'];
294
-                $this->selectedApplication = (string)$applicationName;
294
+                $this->selectedApplication = (string) $applicationName;
295 295
                 $this->selectedTheme = $applicationData['theme'];
296 296
 
297 297
                 $this->selectedApplicationUri = '/'.$subDirectory;
Please login to merge, or discard this patch.
src/WebHemi/Data/Storage/AbstractDataStorage.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@
 block discarded – undo
101 101
      * @param DataEntityInterface &$entity
102 102
      * @return mixed The ID of the saved entity in the storage
103 103
      */
104
-    public function saveEntity(DataEntityInterface &$entity)
104
+    public function saveEntity(DataEntityInterface&$entity)
105 105
     {
106 106
         $entityClass = get_class($entity);
107 107
         $storageEntityClass = get_class($this->entityPrototype);
Please login to merge, or discard this patch.