@@ -83,7 +83,6 @@ discard block |
||
83 | 83 | /** |
84 | 84 | * Adds a file to the concatenation/compression process. |
85 | 85 | * |
86 | - * @param String $path Path to the file to include in the compressed package/output. |
|
87 | 86 | */ |
88 | 87 | public function &addFile($file) { |
89 | 88 | $this->files .= ($this->files ? "," : "") . $file; |
@@ -256,7 +255,7 @@ discard block |
||
256 | 255 | /** |
257 | 256 | * Renders a script tag that loads the TinyMCE script. |
258 | 257 | * |
259 | - * @param Array $settings Name/value array with settings for the script tag. |
|
258 | + * @param Array $tagSettings Name/value array with settings for the script tag. |
|
260 | 259 | * @param Bool $return The script tag is return instead of being output if true |
261 | 260 | * @return String the tag is returned if $return is true |
262 | 261 | */ |
@@ -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) |
@@ -11,9 +11,9 @@ |
||
11 | 11 | /** |
12 | 12 | * Call a protected method on an object via reflection |
13 | 13 | * |
14 | - * @param object $object The object to call the method on |
|
14 | + * @param CampaignAdmin $object The object to call the method on |
|
15 | 15 | * @param string $method The name of the method |
16 | - * @param array $args The arguments to pass to the method |
|
16 | + * @param CampaignAdminTest_InvalidChangeSet[] $args The arguments to pass to the method |
|
17 | 17 | */ |
18 | 18 | function callProtectedMethod($object, $method, $args = []) { |
19 | 19 | $class = new ReflectionClass(get_class($object)); |