name = $name; $this->visibility = $visibility; $this->property = $property; $this->position = $position; } public function getName(): string { return $this->name; } public function getRanks(): array { return [$this->visibility, $this->property->isStatic(), $this->position]; } }