X-Git-Url: https://git.heureux-cyclage.org/?p=lhc%2Fweb%2Fwiklou.git;a=blobdiff_plain;f=includes%2Fcontent%2FAbstractContent.php;h=e7446550bbb15179089b71c5cbe74d7df9bbb180;hp=6542d7dfadadc46a0ef9f978a0c04d88851786f1;hb=e3bd13db0c285f312e31bb1b7271af4628cca80c;hpb=6733f81d33a71755428a55f2723f4066a141cbb8 diff --git a/includes/content/AbstractContent.php b/includes/content/AbstractContent.php index 6542d7dfad..e7446550bb 100644 --- a/includes/content/AbstractContent.php +++ b/includes/content/AbstractContent.php @@ -230,11 +230,11 @@ abstract class AbstractContent implements Content { $parserOutput = $this->getParserOutput( $title, null, null, false ); } - $updates = array( + $updates = [ new LinksUpdate( $title, $parserOutput, $recursive ) - ); + ]; - Hooks::run( 'SecondaryDataUpdates', array( $title, $old, $recursive, $parserOutput, &$updates ) ); + Hooks::run( 'SecondaryDataUpdates', [ $title, $old, $recursive, $parserOutput, &$updates ] ); return $updates; } @@ -254,7 +254,7 @@ abstract class AbstractContent implements Content { } // recursive check to follow double redirects $recurse = $wgMaxRedirects; - $titles = array( $title ); + $titles = [ $title ]; while ( --$recurse > 0 ) { if ( $title->isRedirect() ) { $page = WikiPage::factory( $title ); @@ -382,7 +382,7 @@ abstract class AbstractContent implements Content { * * @see Content::preloadTransform */ - public function preloadTransform( Title $title, ParserOptions $popts, $params = array() ) { + public function preloadTransform( Title $title, ParserOptions $popts, $params = [] ) { return $this; } @@ -412,9 +412,9 @@ abstract class AbstractContent implements Content { * @see Content::getDeletionUpdates */ public function getDeletionUpdates( WikiPage $page, ParserOutput $parserOutput = null ) { - return array( + return [ new LinksDeletionUpdate( $page ), - ); + ]; } /** @@ -446,14 +446,14 @@ abstract class AbstractContent implements Content { */ public function convert( $toModel, $lossy = '' ) { if ( $this->getModel() === $toModel ) { - //nothing to do, shorten out. + // nothing to do, shorten out. return $this; } $lossy = ( $lossy === 'lossy' ); // string flag, convert to boolean for convenience $result = false; - Hooks::run( 'ConvertContent', array( $this, $toModel, $lossy, &$result ) ); + Hooks::run( 'ConvertContent', [ $this, $toModel, $lossy, &$result ] ); return $result; } @@ -488,7 +488,7 @@ abstract class AbstractContent implements Content { $po = new ParserOutput(); if ( Hooks::run( 'ContentGetParserOutput', - array( $this, $title, $revId, $options, $generateHtml, &$po ) ) ) { + [ $this, $title, $revId, $options, $generateHtml, &$po ] ) ) { // Save and restore the old value, just in case something is reusing // the ParserOptions object in some weird way. @@ -498,7 +498,7 @@ abstract class AbstractContent implements Content { $options->setRedirectTarget( $oldRedir ); } - Hooks::run( 'ContentAlterParserOutput', array( $this, $title, $po ) ); + Hooks::run( 'ContentAlterParserOutput', [ $this, $title, $po ] ); return $po; }