From 43b1118a77f8f1578bc07759286342c855e5d362 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Thu, 17 Aug 2023 14:10:20 +0545 Subject: [PATCH] Make cs-fixer pass --- lib/Property.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/Property.php b/lib/Property.php index d887bfbb..53a252fb 100644 --- a/lib/Property.php +++ b/lib/Property.php @@ -409,6 +409,7 @@ public function offsetSet($offset, $value): void { if (is_int($offset)) { parent::offsetSet($offset, $value); + // @codeCoverageIgnoreStart // This will never be reached, because an exception is always // thrown. @@ -430,6 +431,7 @@ public function offsetUnset($offset): void { if (is_int($offset)) { parent::offsetUnset($offset); + // @codeCoverageIgnoreStart // This will never be reached, because an exception is always // thrown.