* * @readonly */ public $arguments; /** * Creates a new higher order message. * * @param array $arguments */ public function __construct(string $filename, int $line, string $methodName, array $arguments) { $this->filename = $filename; $this->line = $line; $this->methodName = $methodName; $this->arguments = $arguments; } /** * Re-throws the given `$throwable` with the good line and filename. * * @return mixed */ public function call(object $target) { if (($value = $this->retrieveHigherOrderCallable($target)) !== null) { return $value; } try { return Reflection::call($target, $this->methodName, $this->arguments); } catch (Throwable $throwable) { Reflection::setPropertyValue($throwable, 'file', $this->filename); Reflection::setPropertyValue($throwable, 'line', $this->line); if ($throwable->getMessage() === self::getUndefinedMethodMessage($target, $this->methodName)) { /** @var ReflectionClass $reflection */ $reflection = new ReflectionClass($target); /* @phpstan-ignore-next-line */ $reflection = $reflection->getParentClass() ?: $reflection; Reflection::setPropertyValue($throwable, 'message', sprintf('Call to undefined method %s::%s()', $reflection->getName(), $this->methodName)); } throw $throwable; } } /** * Attempts to call one of the available Higher Order callables if it exists. * * @return mixed|null */ private function retrieveHigherOrderCallable(object $target) { if (in_array($this->methodName, get_class_methods(HigherOrderCallables::class), true)) { /* @phpstan-ignore-next-line */ return (new HigherOrderCallables($target))->{$this->methodName}(...$this->arguments); } return null; } private static function getUndefinedMethodMessage(object $target, string $methodName): string { if (\PHP_MAJOR_VERSION >= 8) { return sprintf(sprintf(self::UNDEFINED_METHOD, sprintf('%s::%s()', get_class($target), $methodName))); } return sprintf(self::UNDEFINED_METHOD, $methodName); } }