Passed
Push — master ( 5c4141...cef7e8 )
by Enrico
02:43
created
src/ContainerAwareTrait.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@  discard block
 block discarded – undo
22 22
  */
23 23
 trait ContainerAwareTrait
24 24
 {
25
-    private $container=null;
25
+    private $container = null;
26 26
     
27 27
     public function __construct(ContainerInterface $container = null)
28 28
     {
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
     /**
47 47
      * A shortcut to get a value with a default
48 48
      */
49
-    public function containerGet(String $id, $value=null)
49
+    public function containerGet(String $id, $value = null)
50 50
     {
51 51
         return ($this->container && $this->container->has($id))
52 52
             ? $this->container->get($id)
Please login to merge, or discard this patch.