From: Alexandre Emsenhuber Date: Sat, 4 Sep 2010 06:17:07 +0000 (+0000) Subject: * added @file X-Git-Tag: 1.31.0-rc.0~35172 X-Git-Url: https://git.cyclocoop.org/%242?a=commitdiff_plain;h=2d50fc0efe3058f81ee38b09f52295ecb863eaf6;p=lhc%2Fweb%2Fwiklou.git * added @file * whitespaces fixes * double quotes to simple quotes where possible --- 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' );