Index: trunk/phase3/includes/Wiki.php |
— | — | @@ -38,13 +38,13 @@ |
39 | 39 | */ |
40 | 40 | private $performedAction = 'nosuchaction'; |
41 | 41 | |
42 | | - public function request( WebRequest $x = null ){ |
| 42 | + public function request( WebRequest $x = null ) { |
43 | 43 | $old = $this->context->getRequest(); |
44 | 44 | $this->context->setRequest( $x ); |
45 | 45 | return $old; |
46 | 46 | } |
47 | 47 | |
48 | | - public function output( OutputPage $x = null ){ |
| 48 | + public function output( OutputPage $x = null ) { |
49 | 49 | $old = $this->context->getOutput(); |
50 | 50 | $this->context->setOutput( $x ); |
51 | 51 | return $old; |
— | — | @@ -119,7 +119,7 @@ |
120 | 120 | * Get the Title object that we'll be acting on, as specified in the WebRequest |
121 | 121 | * @return Title |
122 | 122 | */ |
123 | | - public function getTitle(){ |
| 123 | + public function getTitle() { |
124 | 124 | if( $this->context->getTitle() === null ){ |
125 | 125 | $this->context->setTitle( $this->parseTitle() ); |
126 | 126 | } |
— | — | @@ -556,7 +556,7 @@ |
557 | 557 | * |
558 | 558 | * @return string: action |
559 | 559 | */ |
560 | | - public function getPerformedAction(){ |
| 560 | + public function getPerformedAction() { |
561 | 561 | return $this->performedAction; |
562 | 562 | } |
563 | 563 | |