We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87208d8 commit d6467c0Copy full SHA for d6467c0
src/Kernel.php
@@ -116,10 +116,8 @@ private function intercept($key, $value)
116
return $value;
117
}
118
119
- $interceptor = $this->interruptions[$interrupt];
120
-
121
$value = \is_array($value) ? $value : [$value];
122
123
- return $interceptor(...$value);
+ return $this->processor->execute($this->interruptions[$interrupt], $value);
124
125
0 commit comments