diff --git a/src/Routing/Meta.php b/src/Routing/Meta.php index 2812071..0169a7a 100644 --- a/src/Routing/Meta.php +++ b/src/Routing/Meta.php @@ -60,6 +60,7 @@ public function modifyCollection(EndpointCollection $endpoints, ReflectionClass * * @return bool */ + #[\ReturnTypeWillChange] public function offsetExists($offset): bool { return array_key_exists($offset, $this->values); @@ -72,6 +73,7 @@ public function offsetExists($offset): bool * * @return mixed */ + #[\ReturnTypeWillChange] public function offsetGet($offset) { return $this->values[$offset]; @@ -85,6 +87,7 @@ public function offsetGet($offset) * * @return void */ + #[\ReturnTypeWillChange] public function offsetSet($offset, $value) { $this->values[$offset] = $value; @@ -97,6 +100,7 @@ public function offsetSet($offset, $value) * * @return void */ + #[\ReturnTypeWillChange] public function offsetUnset($offset) { unset($this->values[$offset]);