Merge "Added a separate error message for mkdir failures"
[lhc/web/wiklou.git] / includes / content / JavaScriptContentHandler.php
index 65e3a6f..9abad3e 100644 (file)
@@ -32,14 +32,14 @@ class JavaScriptContentHandler extends CodeContentHandler {
         * @param string $modelId
         */
        public function __construct( $modelId = CONTENT_MODEL_JAVASCRIPT ) {
-               parent::__construct( $modelId, array( CONTENT_FORMAT_JAVASCRIPT ) );
+               parent::__construct( $modelId, [ CONTENT_FORMAT_JAVASCRIPT ] );
        }
 
        /**
         * @return string
         */
        protected function getContentClass() {
-               return 'JavaScriptContent';
+               return JavaScriptContent::class;
        }
 
        public function supportsRedirects() {
@@ -57,6 +57,6 @@ class JavaScriptContentHandler extends CodeContentHandler {
                // The parameters are passed as a string so the / is not url-encoded by wfArrayToCgi
                $url = $destination->getFullURL( 'action=raw&ctype=text/javascript', false, PROTO_RELATIVE );
                $class = $this->getContentClass();
-               return new $class( '/* #REDIRECT */' . Xml::encodeJsCall( 'mw.loader.load', array( $url ) ) );
+               return new $class( '/* #REDIRECT */' . Xml::encodeJsCall( 'mw.loader.load', [ $url ] ) );
        }
 }