@@ -142,6 +142,7 @@ discard block |
||
142 | 142 | * {@inheritdoc} |
143 | 143 | * |
144 | 144 | * Also set the URLParams |
145 | + * @param HTTPRequest $request |
|
145 | 146 | */ |
146 | 147 | public function setRequest($request) { |
147 | 148 | $return = parent::setRequest($request); |
@@ -501,7 +502,7 @@ discard block |
||
501 | 502 | * |
502 | 503 | * @param array $params |
503 | 504 | * |
504 | - * @return string |
|
505 | + * @return DBHTMLText |
|
505 | 506 | */ |
506 | 507 | public function render($params = null) { |
507 | 508 | $template = $this->getViewer($this->getAction()); |
@@ -664,7 +665,7 @@ discard block |
||
664 | 665 | * Tests whether a redirection has been requested. If redirect() has been called, it will return |
665 | 666 | * the URL redirected to. Otherwise, it will return null. |
666 | 667 | * |
667 | - * @return null|string |
|
668 | + * @return boolean |
|
668 | 669 | */ |
669 | 670 | public function redirectedTo() { |
670 | 671 | return $this->getResponse() && $this->getResponse()->getHeader('Location'); |
@@ -695,7 +696,6 @@ discard block |
||
695 | 696 | * |
696 | 697 | * Caution: All parameters are expected to be URI-encoded already. |
697 | 698 | * |
698 | - * @param string|array $arg,.. One or more link segments, or list of link segments as an array |
|
699 | 699 | * @return string |
700 | 700 | */ |
701 | 701 | public static function join_links($arg = null) { |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | * Find version of this object in the given stage |
148 | 148 | * |
149 | 149 | * @param string $stage |
150 | - * @return DataObject|Versioned |
|
150 | + * @return DataObject|null |
|
151 | 151 | * @throws UnexpectedDataException |
152 | 152 | */ |
153 | 153 | protected function getObjectInStage($stage) { |
@@ -160,7 +160,7 @@ discard block |
||
160 | 160 | |
161 | 161 | /** |
162 | 162 | * Find latest version of this object |
163 | - * @return DataObject|Versioned |
|
163 | + * @return DataObject|null |
|
164 | 164 | * @throws UnexpectedDataException |
165 | 165 | */ |
166 | 166 | protected function getObjectLatestVersion() { |