Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jenssegers authored Jul 24, 2024
1 parent 0584999 commit 4067b92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Model.php
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ public function offsetExists(mixed $offset): bool
* Get the value for a given offset.
*
* @param mixed $offset
* @return mix
* @return mixed

This comment has been minimized.

Copy link
@BonnieSawe

BonnieSawe Jul 24, 2024

@jenssegers you didn't close the comments above this method and it is causing failures.

We are getting this error class contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (ArrayAccess::offsetGet)

public function offsetGet(mixed $offset): mixed
{
return $this->$offset;
Expand Down

0 comments on commit 4067b92

Please sign in to comment.