WikiPage::prepareTextForEdit() was removed
[lhc/web/wiklou.git] / includes / DeprecatedGlobal.php
index 3ba2211..14329d3 100644 (file)
@@ -34,7 +34,11 @@ class DeprecatedGlobal extends StubObject {
                $this->version = $version;
        }
 
+       // @codingStandardsIgnoreStart
+       // 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:
                 * 1 = this function ( _newObject )
@@ -50,4 +54,5 @@ class DeprecatedGlobal extends StubObject {
                wfDeprecated( '$' . $this->global, $this->version, false, 6 );
                return $this->realValue;
        }
+       // @codingStandardsIgnoreEnd
 }