annotationsReader = $annotationsReader; $this->phpDocReader = new PropertyPhpDocReader(); $this->swgAnnotationsReader = new SwgAnnotationsReader($annotationsReader); } public function updateDefinition(\ReflectionClass $reflectionClass, Schema $schema) { $this->swgAnnotationsReader->updateDefinition($reflectionClass, $schema); } public function updateProperty(\ReflectionProperty $reflectionProperty, Schema $property) { $this->phpDocReader->updateProperty($reflectionProperty, $property); $this->swgAnnotationsReader->updateProperty($reflectionProperty, $property); } }