Skip to content

Commit f95f7dc

Browse files
Phenix789aldas
authored andcommitted
Fix ResultContainer::offsetGet() return type
1 parent ac8661a commit f95f7dc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Network/ResultContainer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ public function offsetExists($offset): bool
4646
return isset($this->data[$offset]);
4747
}
4848

49-
public function offsetGet($offset)
49+
public function offsetGet($offset): mixed
5050
{
5151
return $this->data[$offset] ?? null;
5252
}

0 commit comments

Comments
 (0)