@@ -412,7 +412,7 @@ discard block |
||
412 | 412 | * Check if this file can be modified |
413 | 413 | * |
414 | 414 | * @param Member $member |
415 | - * @return boolean |
|
415 | + * @return boolean|string |
|
416 | 416 | */ |
417 | 417 | public function canEdit($member = null) { |
418 | 418 | if(!$member) { |
@@ -432,7 +432,7 @@ discard block |
||
432 | 432 | * |
433 | 433 | * @param Member $member |
434 | 434 | * @param array $context |
435 | - * @return boolean |
|
435 | + * @return boolean|string |
|
436 | 436 | */ |
437 | 437 | public function canCreate($member = null, $context = array()) { |
438 | 438 | if(!$member) { |
@@ -451,7 +451,7 @@ discard block |
||
451 | 451 | * Check if this file can be deleted |
452 | 452 | * |
453 | 453 | * @param Member $member |
454 | - * @return boolean |
|
454 | + * @return boolean|string |
|
455 | 455 | */ |
456 | 456 | public function canDelete($member = null) { |
457 | 457 | if(!$member) { |
@@ -647,7 +647,7 @@ discard block |
||
647 | 647 | * |
648 | 648 | * @param string $condition The PHP condition to be evaluated. The page will be called $item |
649 | 649 | * @param array $collator An array, passed by reference, to collect all of the matching descendants. |
650 | - * @return true|null |
|
650 | + * @return boolean|null |
|
651 | 651 | */ |
652 | 652 | public function collateDescendants($condition, &$collator) { |
653 | 653 | if($children = $this->Children()) { |
@@ -1020,6 +1020,7 @@ discard block |
||
1020 | 1020 | * |
1021 | 1021 | * @param String File extension, without dot prefix. Use an asterisk ('*') |
1022 | 1022 | * to specify a generic fallback if no mapping is found for an extension. |
1023 | + * @param string $ext |
|
1023 | 1024 | * @return String Classname for a subclass of {@link File} |
1024 | 1025 | */ |
1025 | 1026 | public static function get_class_for_file_extension($ext) { |
@@ -1163,7 +1164,6 @@ discard block |
||
1163 | 1164 | * Note that the result will not have a leading slash, and should not be used |
1164 | 1165 | * with local file paths. |
1165 | 1166 | * |
1166 | - * @param string $part,... Parts |
|
1167 | 1167 | * @return string |
1168 | 1168 | */ |
1169 | 1169 | public static function join_paths($part = null) { |
@@ -40,6 +40,9 @@ |
||
40 | 40 | ] |
41 | 41 | ); |
42 | 42 | |
43 | + /** |
|
44 | + * @param string $root |
|
45 | + */ |
|
43 | 46 | public function __construct($root = null, $writeFlags = LOCK_EX, $linkHandling = self::DISALLOW_LINKS) { |
44 | 47 | // Get root path |
45 | 48 | $root = $this->findRoot($root); |
@@ -191,7 +191,7 @@ discard block |
||
191 | 191 | * Check if this image has previously crashed GD when attempting to open it - if it's opened |
192 | 192 | * successfully, the manipulation's cache key is removed. |
193 | 193 | * |
194 | - * @param string $arg,... Any number of args that identify this image |
|
194 | + * @param string $arg |
|
195 | 195 | * @return bool True if failed |
196 | 196 | */ |
197 | 197 | public function failedResample($arg = null) { |
@@ -202,7 +202,7 @@ discard block |
||
202 | 202 | /** |
203 | 203 | * Mark a file as failed |
204 | 204 | * |
205 | - * @param string $arg,... Any number of args that identify this image |
|
205 | + * @param string $arg |
|
206 | 206 | */ |
207 | 207 | protected function markFailed($arg = null) { |
208 | 208 | $key = sha1(implode('|', func_get_args())); |
@@ -212,7 +212,6 @@ discard block |
||
212 | 212 | /** |
213 | 213 | * Mark a file as succeeded |
214 | 214 | * |
215 | - * @param string $arg,... Any number of args that identify this image |
|
216 | 215 | */ |
217 | 216 | protected function markSucceeded($arg = null) { |
218 | 217 | $key = sha1(implode('|', func_get_args())); |
@@ -363,7 +362,7 @@ discard block |
||
363 | 362 | * using built-in function. Used when imagerotate function is not available(i.e. Ubuntu) |
364 | 363 | * |
365 | 364 | * @param float $angle Angle in degrees |
366 | - * @return static |
|
365 | + * @return null|resource |
|
367 | 366 | */ |
368 | 367 | public function rotatePixelByPixel($angle) { |
369 | 368 | if(!$this->gd) { |
@@ -762,7 +762,6 @@ |
||
762 | 762 | * Name a variant based on a format with arbitrary parameters |
763 | 763 | * |
764 | 764 | * @param string $format The format name. |
765 | - * @param mixed $arg,... Additional arguments |
|
766 | 765 | * @return string |
767 | 766 | * @throws InvalidArgumentException |
768 | 767 | */ |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | * Set a different instance than {@link Upload_Validator} |
115 | 115 | * for this upload session. |
116 | 116 | * |
117 | - * @param object $validator |
|
117 | + * @param Upload_Validator $validator |
|
118 | 118 | */ |
119 | 119 | public function setValidator($validator) { |
120 | 120 | $this->validator = $validator; |
@@ -363,7 +363,7 @@ discard block |
||
363 | 363 | /** |
364 | 364 | * Determines wether previous operations caused an error. |
365 | 365 | * |
366 | - * @return boolean |
|
366 | + * @return integer |
|
367 | 367 | */ |
368 | 368 | public function isError() { |
369 | 369 | return (count($this->errors)); |
@@ -147,7 +147,7 @@ |
||
147 | 147 | * @see http://uk3.php.net/manual/en/function.setcookie.php |
148 | 148 | * |
149 | 149 | * @param string $name The name of the cookie |
150 | - * @param string|array $value The value for the cookie to hold |
|
150 | + * @param false|string $value The value for the cookie to hold |
|
151 | 151 | * @param int $expiry The number of days until expiry |
152 | 152 | * @param string $path The path to save the cookie on (falls back to site base) |
153 | 153 | * @param string $domain The domain to make the cookie available on |
@@ -534,7 +534,7 @@ discard block |
||
534 | 534 | * Returns the domain part of the URL 'http://www.mysite.com'. Returns FALSE is this environment |
535 | 535 | * variable isn't set. |
536 | 536 | * |
537 | - * @return bool|string |
|
537 | + * @return string|false |
|
538 | 538 | */ |
539 | 539 | public static function protocolAndHost() { |
540 | 540 | $alternate = Config::inst()->get('Director', 'alternate_base_url'); |
@@ -869,7 +869,7 @@ discard block |
||
869 | 869 | /** |
870 | 870 | * Returns true if the given file exists. Filename should be relative to the site root. |
871 | 871 | * |
872 | - * @param $file |
|
872 | + * @param string $file |
|
873 | 873 | * |
874 | 874 | * @return bool |
875 | 875 | */ |
@@ -1087,7 +1087,7 @@ discard block |
||
1087 | 1087 | * Can also be checked with {@link Director::isDev()}, {@link Director::isTest()}, and |
1088 | 1088 | * {@link Director::isLive()}. |
1089 | 1089 | * |
1090 | - * @return bool|string |
|
1090 | + * @return string|false |
|
1091 | 1091 | */ |
1092 | 1092 | public static function get_environment_type() { |
1093 | 1093 | if(Director::isLive()) { |
@@ -390,7 +390,7 @@ |
||
390 | 390 | } |
391 | 391 | |
392 | 392 | /** |
393 | - * @return Email|ViewableData_Customised |
|
393 | + * @return ViewableData |
|
394 | 394 | */ |
395 | 395 | protected function templateData() { |
396 | 396 | if($this->template_data) { |
@@ -321,7 +321,7 @@ |
||
321 | 321 | /** |
322 | 322 | * Encode an array of parts using multipart |
323 | 323 | * |
324 | - * @param array $parts List of parts |
|
324 | + * @param string[] $parts List of parts |
|
325 | 325 | * @param string $contentType Content-type of parts |
326 | 326 | * @param array $headers Existing headers to include in response |
327 | 327 | * @return array Array with two items, the body followed by headers |