Verified Commit 165d8163 authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: (Core) - fiing listingEntry

Fixing listingEntry
No related merge requests found
Showing with 5 additions and 5 deletions
+5 -5
...@@ -57,24 +57,24 @@ class ListingEntry implements ArrayAccess ...@@ -57,24 +57,24 @@ class ListingEntry implements ArrayAccess
$this->row = $row; $this->row = $row;
} }
public function offsetSet ($offset, $value) public function offsetSet ($offset, $value) : void
{ {
$this->attrs[$offset] = $value; $this->attrs[$offset] = $value;
} }
public function offsetExists ($offset) public function offsetExists ($offset) : bool
{ {
return isset($this->attrs[$offset]); return isset($this->attrs[$offset]);
} }
public function offsetUnset ($offset) public function offsetUnset ($offset) : void
{ {
unset($this->attrs[$offset]); unset($this->attrs[$offset]);
} }
public function offsetGet ($offset) public function offsetGet ($offset) : mixed
{ {
return (isset($this->attrs[$offset]) ? $this->attrs[$offset] : NULL); return ($this->attrs[$offset] ?? NULL);
} }
public function getPid (): string public function getPid (): string
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment