attributeClass = $attributeClass; $this->annotationProperty = $annotationProperty; $this->doesNeedNewImport = $doesNeedNewImport; RectorAssert::className($attributeClass); } /** * @return int|string|null */ public function getAnnotationProperty() { return $this->annotationProperty; } public function getAttributeClass() : string { return $this->attributeClass; } public function doesNeedNewImport() : bool { return $this->doesNeedNewImport; } }