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;