We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ade94ce commit 5ea7447Copy full SHA for 5ea7447
1 file changed
src/Util/IgnoreList.php
@@ -31,7 +31,7 @@ class IgnoreList
31
*/
32
public static function ignoringNone()
33
{
34
- return new static();
+ return new self();
35
36
}//end ignoringNone()
37
@@ -43,7 +43,7 @@ public static function ignoringNone()
43
44
public static function ignoringAll()
45
46
- $ret = new static();
+ $ret = new self();
47
$ret->data['.default'] = true;
48
return $ret;
49
0 commit comments