*/ private $argumentPositionAndValues = []; /** * @param array $argumentPositionAndValues */ public function __construct(string $funcCall, array $argumentPositionAndValues = []) { $this->funcCall = $funcCall; $this->argumentPositionAndValues = $argumentPositionAndValues; } public function getFuncCall(): string { return $this->funcCall; } /** * @return array */ public function getArgumentPositionAndValues(): array { return $this->argumentPositionAndValues; } }