Skip to content

Commit

Permalink
Make phpstan happy
Browse files Browse the repository at this point in the history
  • Loading branch information
anomiex committed Dec 10, 2023
1 parent d8c5655 commit 7338e5a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Util/IgnoreList.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class IgnoreList
*/
public static function ignoringNone()
{
return new static();
return new self();

}//end ignoringNone()

Expand All @@ -43,7 +43,7 @@ public static function ignoringNone()
*/
public static function ignoringAll()
{
$ret = new static();
$ret = new self();
$ret->data['.default'] = true;
return $ret;

Expand Down

0 comments on commit 7338e5a

Please sign in to comment.