From 2d50fc0efe3058f81ee38b09f52295ecb863eaf6 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Sat, 4 Sep 2010 06:17:07 +0000 Subject: [PATCH] * added @file * whitespaces fixes * double quotes to simple quotes where possible --- maintenance/helloWorld.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/maintenance/helloWorld.php b/maintenance/helloWorld.php index c50c454b93..7493214eb2 100644 --- a/maintenance/helloWorld.php +++ b/maintenance/helloWorld.php @@ -1,21 +1,22 @@ - * @ingroup Maintenance */ -require_once( dirname( __FILE__ ) . "/Maintenance.php" ); +require_once( dirname( __FILE__ ) . '/Maintenance.php' ); class CommandLineInstaller extends Maintenance { public function __construct() { parent::__construct(); - $this->addOption( 'name', 'Who to say Hello to', false, true); + $this->addOption( 'name', 'Who to say Hello to', false, true ); } public function execute() { @@ -24,5 +25,4 @@ class CommandLineInstaller extends Maintenance { } } -wfRunMaintenance( "CommandLineInstaller" ); - +wfRunMaintenance( 'CommandLineInstaller' ); -- 2.20.1