Index: trunk/phase3/maintenance/helloWorld.php |
— | — | @@ -1,21 +1,22 @@ |
2 | 2 | <?php |
3 | | - |
4 | 3 | /** |
5 | 4 | * To the extent possible under law, I, Mark Hershberger, have waived all copyright and |
6 | 5 | * related or neighboring rights to Hello World. This work is published from United States. |
| 6 | + * |
| 7 | + * @file |
| 8 | + * @ingroup Maintenance |
7 | 9 | * @copyright CC0 http://creativecommons.org/publicdomain/zero/1.0/ |
8 | 10 | * @author Mark A. Hershberger <mah@everybody.org> |
9 | | - * @ingroup Maintenance |
10 | 11 | */ |
11 | 12 | |
12 | | -require_once( dirname( __FILE__ ) . "/Maintenance.php" ); |
| 13 | +require_once( dirname( __FILE__ ) . '/Maintenance.php' ); |
13 | 14 | |
14 | 15 | class CommandLineInstaller extends Maintenance { |
15 | 16 | |
16 | 17 | public function __construct() { |
17 | 18 | parent::__construct(); |
18 | 19 | |
19 | | - $this->addOption( 'name', 'Who to say Hello to', false, true); |
| 20 | + $this->addOption( 'name', 'Who to say Hello to', false, true ); |
20 | 21 | } |
21 | 22 | |
22 | 23 | public function execute() { |
— | — | @@ -24,5 +25,4 @@ |
25 | 26 | } |
26 | 27 | } |
27 | 28 | |
28 | | -wfRunMaintenance( "CommandLineInstaller" ); |
29 | | - |
| 29 | +wfRunMaintenance( 'CommandLineInstaller' ); |