We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d92d9d commit 181f732Copy full SHA for 181f732
src/Traits/Caching.php
@@ -32,7 +32,9 @@ public function __call($method, $parameters)
32
) {
33
$result = $this->innerBuilder->{$method}(...$parameters);
34
35
- return $result === $this->innerBuilder ? $this : $result;
+ return $result === $this->innerBuilder
36
+ ? $this
37
+ : $result;
38
}
39
40
$result = parent::__call($method, $parameters);
0 commit comments