X-Git-Url: https://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2FcheckSyntax.php;h=49bd05cf8a00cc5515f850c0aae96172199ad5ff;hb=72fae85001a9645a758747057e5fff0300123f3a;hp=998cade4cc0224ed0ba5ad192f2059989217bb2f;hpb=08a7ede3262a1259f0cdc74768d1f84d021cba52;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/checkSyntax.php b/maintenance/checkSyntax.php index 998cade4cc..49bd05cf8a 100644 --- a/maintenance/checkSyntax.php +++ b/maintenance/checkSyntax.php @@ -31,8 +31,8 @@ require_once __DIR__ . '/Maintenance.php'; class CheckSyntax extends Maintenance { // List of files we're going to check - private $mFiles = array(), $mFailures = array(), $mWarnings = array(); - private $mIgnorePaths = array(), $mNoStyleCheckPaths = array(); + private $mFiles = [], $mFailures = [], $mWarnings = []; + private $mIgnorePaths = [], $mNoStyleCheckPaths = []; public function __construct() { parent::__construct(); @@ -83,12 +83,10 @@ class CheckSyntax extends Maintenance { private function buildFileList() { global $IP; - $this->mIgnorePaths = array( - // Compat stuff, explodes on PHP 5.3 - "includes/NamespaceCompat.php$", - ); + $this->mIgnorePaths = [ + ]; - $this->mNoStyleCheckPaths = array( + $this->mNoStyleCheckPaths = [ // Third-party code we don't care about "/activemq_stomp/", "EmailPage/PHPMailer", @@ -100,7 +98,7 @@ class CheckSyntax extends Maintenance { "QPoll/Excel/", "/geshi/", "/smarty/", - ); + ]; if ( $this->hasOption( 'path' ) ) { $path = $this->getOption( 'path' ); @@ -141,13 +139,13 @@ class CheckSyntax extends Maintenance { // Only check files in these directories. // Don't just put $IP, because the recursive dir thingie goes into all subdirs - $dirs = array( + $dirs = [ $IP . '/includes', $IP . '/mw-config', $IP . '/languages', $IP . '/maintenance', $IP . '/skins', - ); + ]; if ( $this->hasOption( 'with-extensions' ) ) { $dirs[] = $IP . '/extensions'; } @@ -205,7 +203,7 @@ class CheckSyntax extends Maintenance { $wgMaxShellMemory = $oldMaxShellMemory; - $arr = array(); + $arr = []; $filename = strtok( $output, "\n" ); while ( $filename !== false ) { if ( $filename !== '' ) { @@ -229,7 +227,7 @@ class CheckSyntax extends Maintenance { return false; } foreach ( $this->mIgnorePaths as $regex ) { - $m = array(); + $m = []; if ( preg_match( "~{$regex}~", $file, $m ) ) { return false; } @@ -308,7 +306,7 @@ class CheckSyntax extends Maintenance { */ private function checkForMistakes( $file ) { foreach ( $this->mNoStyleCheckPaths as $regex ) { - $m = array(); + $m = []; if ( preg_match( "~{$regex}~", $file, $m ) ) { return; } @@ -329,7 +327,7 @@ class CheckSyntax extends Maintenance { } if ( !isset( $this->mWarnings[$file] ) ) { - $this->mWarnings[$file] = array(); + $this->mWarnings[$file] = []; } $this->mWarnings[$file][] = $desc; $this->output( "Warning in file $file: $desc found.\n" ); @@ -341,7 +339,7 @@ class CheckSyntax extends Maintenance { } if ( !isset( $this->mWarnings[$file] ) ) { - $this->mWarnings[$file] = array(); + $this->mWarnings[$file] = []; } $this->mWarnings[$file][] = $desc; $this->output( "Warning in file $file: $desc found.\n" );