* added @file
authorAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 4 Sep 2010 06:17:07 +0000 (06:17 +0000)
committerAlexandre Emsenhuber <ialex@users.mediawiki.org>
Sat, 4 Sep 2010 06:17:07 +0000 (06:17 +0000)
* whitespaces fixes
* double quotes to simple quotes where possible

maintenance/helloWorld.php

index c50c454..7493214 100644 (file)
@@ -1,21 +1,22 @@
 <?php
-
 /**
  * To the extent possible under law,  I, Mark Hershberger, have waived all copyright and
  * related or neighboring rights to Hello World. This work is published from United States.
+ *
+ * @file
+ * @ingroup Maintenance
  * @copyright CC0 http://creativecommons.org/publicdomain/zero/1.0/
  * @author Mark A. Hershberger <mah@everybody.org>
- * @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' );