X-Git-Url: http://git.heureux-cyclage.org/?a=blobdiff_plain;f=maintenance%2Fjsparse.php;h=3f0a9ba7ec055dcea069811a4ed74256512e7fd7;hb=69217704148a5751754fb1b9587e7f6d5c774b13;hp=1a2e121c0da49e279be3c0602923518988a0de76;hpb=652c4be7c248720fd0fd91fa0d9bfc2a0fee3352;p=lhc%2Fweb%2Fwiklou.git diff --git a/maintenance/jsparse.php b/maintenance/jsparse.php index 1a2e121c0d..3f0a9ba7ec 100644 --- a/maintenance/jsparse.php +++ b/maintenance/jsparse.php @@ -21,7 +21,7 @@ * @ingroup Maintenance */ -require_once( __DIR__ . '/Maintenance.php' ); +require_once __DIR__ . '/Maintenance.php'; /** * Maintenance script to do test JavaScript validity parses using jsmin+'s parser @@ -50,7 +50,7 @@ class JSParseHelper extends Maintenance { wfSuppressWarnings(); $js = file_get_contents( $filename ); wfRestoreWarnings(); - if ($js === false) { + if ( $js === false ) { $this->output( "$filename ERROR: could not read file\n" ); $this->errs++; continue; @@ -58,7 +58,7 @@ class JSParseHelper extends Maintenance { try { $parser->parse( $js, $filename, 1 ); - } catch (Exception $e) { + } catch ( Exception $e ) { $this->errs++; $this->output( "$filename ERROR: " . $e->getMessage() . "\n" ); continue; @@ -67,11 +67,11 @@ class JSParseHelper extends Maintenance { $this->output( "$filename OK\n" ); } - if ($this->errs > 0) { - exit(1); + if ( $this->errs > 0 ) { + exit( 1 ); } } } $maintClass = "JSParseHelper"; -require_once( RUN_MAINTENANCE_IF_MAIN ); +require_once RUN_MAINTENANCE_IF_MAIN;