diff --git a/src/Geometry/Rectangle.php b/src/Geometry/Rectangle.php index 22da194e..484364f9 100644 --- a/src/Geometry/Rectangle.php +++ b/src/Geometry/Rectangle.php @@ -368,13 +368,14 @@ protected function resizer(?int $width = null, ?int $height = null): RectangleRe /** * Show debug info for the current rectangle * - * @return array + * @return array */ public function __debugInfo(): array { return [ 'width' => $this->width(), 'height' => $this->height(), + 'pivot' => $this->pivot, ]; } }