Passed
Branch master (fd1827)
by Dmitrij
02:10
created
src/AppContainer.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
      */
76 76
     public function bind($key, $value)
77 77
     {
78
-        if (! array_key_exists($key, $this->registry)) {
78
+        if (!array_key_exists($key, $this->registry)) {
79 79
             $this->registry[$key] = $value;
80 80
         } else {
81 81
             throw new \Exception("{$key} is already bound in the container.");
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
      */
90 90
     public function get($key)
91 91
     {
92
-        if (! array_key_exists($key, $this->registry)) {
92
+        if (!array_key_exists($key, $this->registry)) {
93 93
             throw new \Exception("No {$key} is bound in the container.");
94 94
         }
95 95
 
Please login to merge, or discard this patch.