Skip to content

Commit

Permalink
Fixed typo return type
Browse files Browse the repository at this point in the history
  • Loading branch information
tabuna committed Dec 31, 2024
1 parent 7c0c548 commit e2f5f2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Screen/Repository.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public function count(): int
* @param $key
* @param $value
*
* @return $this|void
* @return $this
*/
public function set($key, $value = null)
public function set($key, $value = null): self
{
parent::set($key, $value);

Expand Down

0 comments on commit e2f5f2f

Please sign in to comment.