X-Git-Url: http://git.cyclocoop.org/?a=blobdiff_plain;f=includes%2FDeprecatedGlobal.php;h=242cecf1772c4055a3576bc4590e84779acf82bf;hb=c26c3ba1a56bd84471bafba089d1b36a098e7855;hp=60dde401ecc6de70a98412baa2b753f4e225d7e5;hpb=8e185ecb2b53217665ea53f63119a28b3f80ff56;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/DeprecatedGlobal.php b/includes/DeprecatedGlobal.php index 60dde401ec..242cecf177 100644 --- a/includes/DeprecatedGlobal.php +++ b/includes/DeprecatedGlobal.php @@ -37,9 +37,7 @@ class DeprecatedGlobal extends StubObject { $this->version = $version; } - // @codingStandardsIgnoreStart - // PSR2.Methods.MethodDeclaration.Underscore - // PSR2.Classes.PropertyDeclaration.ScopeMissing + // phpcs:ignore PSR2.Methods.MethodDeclaration.Underscore,PSR2.Classes.PropertyDeclaration.ScopeMissing function _newObject() { /* Put the caller offset for wfDeprecated as 6, as * that gives the function that uses this object, since: @@ -56,5 +54,4 @@ class DeprecatedGlobal extends StubObject { wfDeprecated( '$' . $this->global, $this->version, false, 6 ); return parent::_newObject(); } - // @codingStandardsIgnoreEnd }