Skip to content

Commit

Permalink
Fix undefined process property (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
irazasyed authored Mar 30, 2020
1 parent cce435e commit ae2ccf8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ public function __call(string $method, array $parameters)
return static::$extensions[$method]($this);
}

if (method_exists($this->process, $method)) {
if (method_exists($this->process(), $method)) {
return $this->process()->{$method}(...$parameters);
}

Expand Down

0 comments on commit ae2ccf8

Please sign in to comment.