Completed
Push — master ( 72c1e6...0a1c39 )
by Arnold
05:12
created
src/Controller/Session/Flash.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      */
32 32
     public function __construct(&$session)
33 33
     {
34
-        $this->session =& $session;
34
+        $this->session = & $session;
35 35
     }
36 36
     
37 37
     /**
Please login to merge, or discard this patch.
src/Controller/Session.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
         $this->session = $this->getRequest()->getAttribute('session');
39 39
         
40 40
         if (!isset($this->session)) {
41
-            $this->session =& $_SESSION;
41
+            $this->session = & $_SESSION;
42 42
         }
43 43
     }
44 44
     
Please login to merge, or discard this patch.