aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorGravatar Dag <me@dvikan.no> 2024-08-29 23:02:01 +0200
committerGravatar GitHub <noreply@github.com> 2024-08-29 23:02:01 +0200
commite7ae06dcf08f0c977a231bb1ce9cb0b6657b4cfd (patch)
tree64abb94548448290ef936640d8de8e8347e53457 /lib
parent58544cd61a465102bebc315b4467e4e45d587723 (diff)
downloadrss-bridge-e7ae06dcf08f0c977a231bb1ce9cb0b6657b4cfd.tar.gz
rss-bridge-e7ae06dcf08f0c977a231bb1ce9cb0b6657b4cfd.tar.zst
rss-bridge-e7ae06dcf08f0c977a231bb1ce9cb0b6657b4cfd.zip
fix: bug in prior refactor (#4239)
Diffstat (limited to 'lib')
-rw-r--r--lib/Container.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/Container.php b/lib/Container.php
index 6dd0b6d3..086bd1f6 100644
--- a/lib/Container.php
+++ b/lib/Container.php
@@ -12,7 +12,8 @@ class Container implements \ArrayAccess
$this->values[$offset] = $value;
}
- #[ReturnTypeWillChange] public function offsetGet($offset)
+ #[\ReturnTypeWillChange]
+ public function offsetGet($offset)
{
if (!isset($this->values[$offset])) {
throw new \Exception(sprintf('Unknown container key: "%s"', $offset));
@@ -23,7 +24,8 @@ class Container implements \ArrayAccess
return $this->resolved[$offset];
}
- #[ReturnTypeWillChange] public function offsetExists($offset)
+ #[\ReturnTypeWillChange]
+ public function offsetExists($offset)
{
}