X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FrefreshFileHeaders.php;h=ea5b6f97573ee7994dc7a715c3f7b8a97c9cddef;hb=7070dfc250e229ea4e30028c23e31c9cc15c4460;hp=6bc72ec838046cd0e829db51009571bf92ca8632;hpb=b24a0048185fe7c4d86f8b55872ad749c6ab52e6;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/refreshFileHeaders.php b/maintenance/refreshFileHeaders.php index 6bc72ec838..ea5b6f9757 100644 --- a/maintenance/refreshFileHeaders.php +++ b/maintenance/refreshFileHeaders.php @@ -34,7 +34,7 @@ require_once __DIR__ . '/Maintenance.php'; class RefreshFileHeaders extends Maintenance { function __construct() { parent::__construct(); - $this->mDescription = 'Script to update file HTTP headers'; + $this->addDescription( 'Script to update file HTTP headers' ); $this->addOption( 'verbose', 'Output information about each file.', false, false, 'v' ); $this->addOption( 'start', 'Name of file to start with', false, true ); $this->addOption( 'end', 'Name of file to end with', false, true ); @@ -49,12 +49,12 @@ class RefreshFileHeaders extends Maintenance { $count = 0; $dbr = $this->getDB( DB_SLAVE ); do { - $conds = array( "img_name > {$dbr->addQuotes( $start )}" ); + $conds = [ "img_name > {$dbr->addQuotes( $start )}" ]; if ( strlen( $end ) ) { $conds[] = "img_name <= {$dbr->addQuotes( $end )}"; } $res = $dbr->select( 'image', '*', $conds, - __METHOD__, array( 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'img_name ASC' ) ); + __METHOD__, [ 'LIMIT' => $this->mBatchSize, 'ORDER BY' => 'img_name ASC' ] ); foreach ( $res as $row ) { $file = $repo->newFileFromRow( $row ); $headers = $file->getStreamHeaders(); @@ -80,9 +80,9 @@ class RefreshFileHeaders extends Maintenance { } protected function updateFileHeaders( File $file, array $headers ) { - $status = $file->getRepo()->getBackend()->describe( array( + $status = $file->getRepo()->getBackend()->describe( [ 'src' => $file->getPath(), 'headers' => $headers - ) ); + ] ); if ( !$status->isGood() ) { $this->error( "Encountered error: " . print_r( $status, true ) ); }