class = $class; $this->method = $method; $this->function = $function; RectorAssert::className($class); RectorAssert::methodName($method); RectorAssert::functionName($function); } public function getObjectType() : ObjectType { return new ObjectType($this->class); } public function getMethod() : string { return $this->method; } public function getFunction() : string { return $this->function; } }