Merge "Remove mention of IE9 support"
[lhc/web/wiklou.git] / tests / phpunit / mocks / content / DummyContentHandlerForTesting.php
index d712254..78d5dc7 100644 (file)
@@ -3,7 +3,7 @@
 class DummyContentHandlerForTesting extends ContentHandler {
 
        public function __construct( $dataModel ) {
-               parent::__construct( $dataModel, [ "testing" ] );
+               parent::__construct( $dataModel, [ DummyContentForTesting::MODEL_ID ] );
        }
 
        /**
@@ -34,6 +34,7 @@ class DummyContentHandlerForTesting extends ContentHandler {
 
        /**
         * Creates an empty Content object of the type supported by this ContentHandler.
+        * @return DummyContentForTesting
         */
        public function makeEmptyContent() {
                return new DummyContentForTesting( '' );