From 5ea74470ce91303d1bf4e183809f2d7139409e86 Mon Sep 17 00:00:00 2001 From: Brad Jorsch Date: Mon, 4 Dec 2023 12:50:11 -0500 Subject: [PATCH] Make phpstan happy --- src/Util/IgnoreList.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Util/IgnoreList.php b/src/Util/IgnoreList.php index df329ff6e7..26ba8f4fbb 100644 --- a/src/Util/IgnoreList.php +++ b/src/Util/IgnoreList.php @@ -31,7 +31,7 @@ class IgnoreList */ public static function ignoringNone() { - return new static(); + return new self(); }//end ignoringNone() @@ -43,7 +43,7 @@ public static function ignoringNone() */ public static function ignoringAll() { - $ret = new static(); + $ret = new self(); $ret->data['.default'] = true; return $ret;