Completed
Push — master ( 632a5c...b470b8 )
by Evan
03:17
created
src/Event/Hook.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
      */
122 122
     public function mediateCallback($given = null)
123 123
     {
124
-        if (! $this->shouldInvoke(func_get_args())) {
124
+        if ( ! $this->shouldInvoke(func_get_args())) {
125 125
             return $given;
126 126
         }
127 127
 
@@ -145,7 +145,7 @@  discard block
 block discarded – undo
145 145
          * Check if any of the conditions returns false,
146 146
          * if so, do not invoke.
147 147
          */
148
-        return ! $this->conditions()->contains(function ($key, $callback) use ($arguments) {
148
+        return ! $this->conditions()->contains(function($key, $callback) use ($arguments) {
149 149
             return false === $callback->callArray($arguments);
150 150
         });
151 151
     }
Please login to merge, or discard this patch.