Completed
Push — develop ( 5d0cc3...a0e911 )
by Evan
01:10
created
src/Event/Hook.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
     {
129 129
         $arguments = func_get_args();
130 130
 
131
-        if (! $this->shouldInvoke($arguments)) {
131
+        if (!$this->shouldInvoke($arguments)) {
132 132
             return $given;
133 133
         }
134 134
 
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
          * Check if any of the conditions returns false,
157 157
          * if so, do not invoke.
158 158
          */
159
-        return ! $this->conditions()->contains(function ($key, $callback) use ($arguments) {
159
+        return !$this->conditions()->contains(function($key, $callback) use ($arguments) {
160 160
             return false === $callback->callArray($arguments);
161 161
         });
162 162
     }
Please login to merge, or discard this patch.