Index: trunk/extensions/Wikimania/backend/Wikimania.php |
— | — | @@ -1,5 +1,5 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Manager class for this year's Wikimania |
5 | 5 | */ |
6 | 6 | class Wikimania { |
— | — | @@ -44,8 +44,8 @@ |
45 | 45 | * @var String |
46 | 46 | */ |
47 | 47 | private $country; |
48 | | - |
49 | 48 | |
| 49 | + |
50 | 50 | /** |
51 | 51 | * Do a bit of delayed setup, based on this year's config |
52 | 52 | * @param $year int Year to host Wikimania for |
Index: trunk/extensions/Wikimania/backend/WikimaniaSchema.php |
— | — | @@ -1,8 +1,7 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Schema generation and such |
5 | 5 | */ |
6 | | - |
7 | 6 | class WikimaniaSchema { |
8 | 7 | /** |
9 | 8 | * Hook for LoadExtensionSchemaUpdates |
Index: trunk/extensions/Wikimania/backend/PaymentGoogleCheckout.php |
— | — | @@ -1,8 +1,7 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * GoogleCheckout payment implementation |
5 | 5 | */ |
6 | | - |
7 | 6 | class PaymentGoogleCheckout extends Payment { |
8 | 7 | public function getForm() { |
9 | 8 | return ''; |
Index: trunk/extensions/Wikimania/backend/PaymentPaypal.php |
— | — | @@ -1,8 +1,7 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Paypal payment implementation |
5 | 5 | */ |
6 | | - |
7 | 6 | class PaymentPaypal extends Payment { |
8 | 7 | public function getForm() { |
9 | 8 | return ''; |
Index: trunk/extensions/Wikimania/backend/WikimaniaRegistration.php |
— | — | @@ -1,8 +1,7 @@ |
2 | 2 | <?php |
3 | | -/* |
| 3 | +/** |
4 | 4 | * Class referring to a specific registration |
5 | 5 | */ |
6 | | - |
7 | 6 | class WikimaniaRegistration { |
8 | 7 | |
9 | 8 | private static function fieldList() { |