top; } public function getRight(): int { return $this->right; } public function getBottom(): int { return $this->bottom; } public function getLeft(): int { return $this->left; } /** @return array */ public function toArray(): array { return [ 'top' => $this->top, 'right' => $this->right, 'bottom' => $this->bottom, 'left' => $this->left, ]; } }