X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2FDeprecatedGlobal.php;h=242cecf1772c4055a3576bc4590e84779acf82bf;hp=60dde401ecc6de70a98412baa2b753f4e225d7e5;hb=9e8439e79d67788916d488f645108f79016d9aca;hpb=1b86e6bb67708d24fce32b3940c926c8314dfcbf 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 }