@@ -321,6 +321,7 @@ |
||
321 | 321 | * Forces the JavaScript requirements to the end of the body, right before the closing tag |
322 | 322 | * |
323 | 323 | * @param bool |
324 | + * @param boolean $var |
|
324 | 325 | * @return $this |
325 | 326 | */ |
326 | 327 | public function setForceJSToBottom($var) |
@@ -95,6 +95,8 @@ discard block |
||
95 | 95 | |
96 | 96 | /** |
97 | 97 | * Override the function that constructs the result arrays to also prepare a 'php' item in the array |
98 | + * @param string $matchrule |
|
99 | + * @param string $name |
|
98 | 100 | */ |
99 | 101 | function construct($matchrule, $name, $arguments = null) |
100 | 102 | { |
@@ -163,9 +165,9 @@ discard block |
||
163 | 165 | |
164 | 166 | /** |
165 | 167 | * Ensures that the arguments to addOpenBlock and addClosedBlock are valid |
166 | - * @param $name |
|
167 | - * @param $callable |
|
168 | - * @param $type |
|
168 | + * @param string $name |
|
169 | + * @param callable $callable |
|
170 | + * @param string $type |
|
169 | 171 | * @throws InvalidArgumentException |
170 | 172 | */ |
171 | 173 | protected function validateExtensionBlock($name, $callable, $type) |
@@ -924,6 +926,7 @@ discard block |
||
924 | 926 | * The basic generated PHP of LookupStep and LastLookupStep is the same, except that LookupStep calls 'obj' to |
925 | 927 | * get the next ViewableData in the sequence, and LastLookupStep calls different methods (XML_val, hasValue, obj) |
926 | 928 | * depending on the context the lookup is used in. |
929 | + * @param string $method |
|
927 | 930 | */ |
928 | 931 | function Lookup_AddLookupStep(&$res, $sub, $method) |
929 | 932 | { |
@@ -6477,6 +6480,7 @@ discard block |
||
6477 | 6480 | |
6478 | 6481 | /** |
6479 | 6482 | * @param string $code |
6483 | + * @param string $templateName |
|
6480 | 6484 | * @return string $code |
6481 | 6485 | */ |
6482 | 6486 | protected function includeDebuggingComments($code, $templateName) |
@@ -648,7 +648,7 @@ discard block |
||
648 | 648 | * @param mixed $data Data context |
649 | 649 | * @param array $arguments Additional arguments |
650 | 650 | * @param Object $scope |
651 | - * @return string Evaluated result |
|
651 | + * @return DBHTMLText Evaluated result |
|
652 | 652 | */ |
653 | 653 | public static function execute_template($template, $data, $arguments = null, $scope = null) |
654 | 654 | { |
@@ -676,6 +676,9 @@ discard block |
||
676 | 676 | return $v->process($data, $arguments); |
677 | 677 | } |
678 | 678 | |
679 | + /** |
|
680 | + * @param string $content |
|
681 | + */ |
|
679 | 682 | public function parseTemplateContent($content, $template = "") |
680 | 683 | { |
681 | 684 | return $this->getParser()->compileString( |
@@ -30,6 +30,9 @@ |
||
30 | 30 | */ |
31 | 31 | protected $cacheTemplate; |
32 | 32 | |
33 | + /** |
|
34 | + * @param string $content |
|
35 | + */ |
|
33 | 36 | public function __construct($content, TemplateParser $parser = null) |
34 | 37 | { |
35 | 38 | if ($parser) { |
@@ -238,7 +238,7 @@ |
||
238 | 238 | |
239 | 239 | /** |
240 | 240 | * @param array $properties |
241 | - * @return string |
|
241 | + * @return \SilverStripe\ORM\FieldType\DBHTMLText |
|
242 | 242 | */ |
243 | 243 | public function Field($properties = array()) |
244 | 244 | { |
@@ -97,7 +97,6 @@ |
||
97 | 97 | * for each of these categories |
98 | 98 | * |
99 | 99 | * @param string $category Category name |
100 | - * @param string,... $categories Additional category names |
|
101 | 100 | * @return $this |
102 | 101 | */ |
103 | 102 | public function setAllowedFileCategories($category) |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | * greater than or equal to this version, a message will be raised |
76 | 76 | * |
77 | 77 | * @static |
78 | - * @param $ver string - |
|
78 | + * @param string $ver string - |
|
79 | 79 | * A php standard version string, see http://php.net/manual/en/function.version-compare.php for details. |
80 | 80 | * @param null $forModule string - |
81 | 81 | * The name of a module. The passed version will be used as the check value for |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | /** |
142 | 142 | * Determine if deprecation notices should be displayed |
143 | 143 | * |
144 | - * @return bool |
|
144 | + * @return boolean|string |
|
145 | 145 | */ |
146 | 146 | public static function get_enabled() |
147 | 147 | { |
@@ -12,11 +12,22 @@ discard block |
||
12 | 12 | Extending_Extension::class, |
13 | 13 | ); |
14 | 14 | |
15 | + /** |
|
16 | + * @param integer $first |
|
17 | + * @param integer $second |
|
18 | + * @param integer $third |
|
19 | + */ |
|
15 | 20 | public function getResults(&$first, &$second, &$third) |
16 | 21 | { |
17 | 22 | // Before extending should be invoked second |
18 | 23 | $this->beforeExtending( |
19 | 24 | 'updateResult', |
25 | + |
|
26 | + /** |
|
27 | + * @param integer $first |
|
28 | + * @param integer $second |
|
29 | + * @param integer $third |
|
30 | + */ |
|
20 | 31 | function (&$first, &$second, &$third) { |
21 | 32 | if ($first === 1 && $second === 2 && $third === 3) { |
22 | 33 | $first = 11; |
@@ -31,6 +42,12 @@ discard block |
||
31 | 42 | // After extending should be invoked fourth |
32 | 43 | $this->afterExtending( |
33 | 44 | 'updateResult', |
45 | + |
|
46 | + /** |
|
47 | + * @param integer $first |
|
48 | + * @param integer $second |
|
49 | + * @param integer $third |
|
50 | + */ |
|
34 | 51 | function (&$first, &$second, &$third) { |
35 | 52 | if ($first === 21 && $second === 22 && $third = 23) { |
36 | 53 | $first = 31; |
@@ -31,7 +31,7 @@ discard block |
||
31 | 31 | /** |
32 | 32 | * Modify method visibility to public for testing |
33 | 33 | * |
34 | - * @param mixed $errors |
|
34 | + * @param string $errors |
|
35 | 35 | */ |
36 | 36 | public function setDisplayErrors($errors) |
37 | 37 | { |
@@ -40,6 +40,10 @@ discard block |
||
40 | 40 | } |
41 | 41 | |
42 | 42 | // Change function visibility to be testable directly |
43 | + |
|
44 | + /** |
|
45 | + * @param string $memstring |
|
46 | + */ |
|
43 | 47 | public function translateMemstring($memstring) |
44 | 48 | { |
45 | 49 | return parent::translateMemstring($memstring); |