class = $class; $this->methodName = $methodName; $this->paramPosition = $paramPosition; } public function getObjectType() : ObjectType { return new ObjectType($this->class); } public function getMethodName() : string { return $this->methodName; } public function getParamPosition() : int { return $this->paramPosition; } }