Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions klarnaconfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ public function __destruct()
* @param mixed $offset field
*
* @return bool
*
*/
#[\ReturnTypeWillChange]
public function offsetExists($offset)
{
return isset($this->options[$offset]);
Expand All @@ -139,6 +141,7 @@ public function offsetExists($offset)
*
* @return mixed
*/
#[\ReturnTypeWillChange]
public function offsetGet($offset)
{
if (!$this->offsetExists($offset)) {
Expand All @@ -155,6 +158,7 @@ public function offsetGet($offset)
*
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetSet($offset, $value)
{
$this->options[$offset] = $value;
Expand All @@ -167,6 +171,7 @@ public function offsetSet($offset, $value)
*
* @return void
*/
#[\ReturnTypeWillChange]
public function offsetUnset($offset)
{
unset($this->options[$offset]);
Expand Down