X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=includes%2Fapi%2FApiComparePages.php;h=7eb0bf3e81919184e1cbf09a52570de33780dc55;hb=6bcdf27c748d70369ff301a5f586fd6a9e2f09a7;hp=23009123a5527de47180e543ec41ae1940d127a4;hpb=cf73ab56fff68ebf3eb3fc3d1d600c950b42e4dc;p=lhc%2Fweb%2Fwiklou.git diff --git a/includes/api/ApiComparePages.php b/includes/api/ApiComparePages.php index 23009123a5..7eb0bf3e81 100644 --- a/includes/api/ApiComparePages.php +++ b/includes/api/ApiComparePages.php @@ -46,7 +46,7 @@ class ApiComparePages extends ApiBase { true, false ); - $vals = array(); + $vals = []; if ( isset( $params['fromtitle'] ) ) { $vals['fromtitle'] = $params['fromtitle']; } @@ -89,14 +89,14 @@ class ApiComparePages extends ApiBase { } elseif ( $titleText ) { $title = Title::newFromText( $titleText ); if ( !$title || $title->isExternal() ) { - $this->dieUsageMsg( array( 'invalidtitle', $titleText ) ); + $this->dieUsageMsg( [ 'invalidtitle', $titleText ] ); } return $title->getLatestRevID(); } elseif ( $titleId ) { $title = Title::newFromID( $titleId ); if ( !$title ) { - $this->dieUsageMsg( array( 'nosuchpageid', $titleId ) ); + $this->dieUsageMsg( [ 'nosuchpageid', $titleId ] ); } return $title->getLatestRevID(); @@ -108,28 +108,28 @@ class ApiComparePages extends ApiBase { } public function getAllowedParams() { - return array( + return [ 'fromtitle' => null, - 'fromid' => array( + 'fromid' => [ ApiBase::PARAM_TYPE => 'integer' - ), - 'fromrev' => array( + ], + 'fromrev' => [ ApiBase::PARAM_TYPE => 'integer' - ), + ], 'totitle' => null, - 'toid' => array( + 'toid' => [ ApiBase::PARAM_TYPE => 'integer' - ), - 'torev' => array( + ], + 'torev' => [ ApiBase::PARAM_TYPE => 'integer' - ), - ); + ], + ]; } protected function getExamplesMessages() { - return array( + return [ 'action=compare&fromrev=1&torev=2' => 'apihelp-compare-example-1', - ); + ]; } }