From b4d3ecb018b84a39ffedb77112162f307dc00c0a Mon Sep 17 00:00:00 2001 From: Oliver Vogel Date: Fri, 9 Jun 2023 15:57:58 +0200 Subject: [PATCH] Add missing property declaration --- src/Geometry/Circle.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Geometry/Circle.php b/src/Geometry/Circle.php index 841d6a96..0180d82b 100644 --- a/src/Geometry/Circle.php +++ b/src/Geometry/Circle.php @@ -5,7 +5,7 @@ namespace Intervention\Image\Geometry; class Circle extends Ellipse { public function __construct( - int $diameter, + protected int $diameter, protected ?Point $pivot = null ) { $this->setWidth($diameter);