From 6724ad2c8c260a485ab166db27089ac867b06a7c Mon Sep 17 00:00:00 2001 From: Cerys Date: Thu, 13 Jun 2024 13:40:21 +0100 Subject: [PATCH] changed `MaximumSize` -> `MaxSize` property --- src/Attributes/SchemaDocument.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Attributes/SchemaDocument.php b/src/Attributes/SchemaDocument.php index 729a8eb..80e9d89 100644 --- a/src/Attributes/SchemaDocument.php +++ b/src/Attributes/SchemaDocument.php @@ -10,18 +10,18 @@ use PhpParser\Node\Name; #[\Attribute] class SchemaDocument extends Attribute { - public int $MaximumSize; + public int $MaxSize; public string $Comment; public string $MimeType; public function __construct( string $Name, - int $MaximumSize = 0, + int $MaxSize = 0, string $Comment = "", string $MimeType = "" ) { - $this->MaximumSize = $MaximumSize; + $this->MaxSize = $MaxSize; $this->Comment = $Comment; $this->MimeType = $MimeType; parent::__construct(new Name("SchemaDocument"), [], []);