Completed
Push — master ( 17450e...0d942d )
by Iqbal
04:30
created
src/Entity/EntityNamingTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,6 +29,6 @@
 block discarded – undo
29 29
     {
30 30
         $parts = explode('\\', get_class($event));
31 31
 
32
-        return 'apply' . end($parts);
32
+        return 'apply'.end($parts);
33 33
     }
34 34
 }
Please login to merge, or discard this patch.
src/Storage/Mongo/MongoConfig.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -79,7 +79,7 @@  discard block
 block discarded – undo
79 79
             $str .= '@';
80 80
         }
81 81
 
82
-        return $str . $this->host . ':' . $this->port;
82
+        return $str.$this->host.':'.$this->port;
83 83
     }
84 84
 
85 85
     /**
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
         }
97 97
 
98 98
         if ($this->user && $this->pass) {
99
-            $str .= ':' . $this->pass;
99
+            $str .= ':'.$this->pass;
100 100
         }
101 101
 
102 102
         return $str;
Please login to merge, or discard this patch.