class = $class; $this->method = $method; $this->property = $property; } public function getObjectType() : \PHPStan\Type\ObjectType { return new \PHPStan\Type\ObjectType($this->class); } public function getMethod() : string { return $this->method; } public function getProperty() : string { return $this->property; } }