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