@@ -90,6 +90,7 @@ |
||
| 90 | 90 | |
| 91 | 91 | /** |
| 92 | 92 | * @param integer the time the cookie expires. This is a Unix timestamp so is in number of seconds since the epoch. |
| 93 | + * @param integer $value |
|
| 93 | 94 | */ |
| 94 | 95 | public function setExpire($value) |
| 95 | 96 | { |
@@ -87,6 +87,7 @@ |
||
| 87 | 87 | * Constructor. |
| 88 | 88 | * Decomposes the specified URI into parts. |
| 89 | 89 | * @param string URI to be represented |
| 90 | + * @param string $uri |
|
| 90 | 91 | * @throws TInvalidDataValueException if URI is of bad format |
| 91 | 92 | */ |
| 92 | 93 | public function __construct($uri) |
@@ -606,6 +606,7 @@ discard block |
||
| 606 | 606 | |
| 607 | 607 | /** |
| 608 | 608 | * @param string full regular expression mapping pattern. |
| 609 | + * @param string $value |
|
| 609 | 610 | */ |
| 610 | 611 | public function setRegularExpression($value) |
| 611 | 612 | { |
@@ -715,6 +716,7 @@ discard block |
||
| 715 | 716 | * Uses URL pattern (or full regular expression if available) to |
| 716 | 717 | * match the given url path. |
| 717 | 718 | * @param THttpRequest the request module |
| 719 | + * @param THttpRequest $request |
|
| 718 | 720 | * @return array matched parameters, empty if no matches. |
| 719 | 721 | */ |
| 720 | 722 | public function getPatternMatches($request) |
@@ -785,7 +787,7 @@ discard block |
||
| 785 | 787 | } |
| 786 | 788 | |
| 787 | 789 | /** |
| 788 | - * @return THttpRequestUrlFormat the format of URLs. Defaults to THttpRequestUrlFormat::Get. |
|
| 790 | + * @return string the format of URLs. Defaults to THttpRequestUrlFormat::Get. |
|
| 789 | 791 | */ |
| 790 | 792 | public function getUrlFormat() |
| 791 | 793 | { |
@@ -28,6 +28,7 @@ |
||
| 28 | 28 | * appropriate event(s) (e.g. OnClick, OnCommand) indicating the component |
| 29 | 29 | * is responsible for the callback event. |
| 30 | 30 | * @param TCallbackEventParameter the parameter associated with the callback event |
| 31 | + * @return void |
|
| 31 | 32 | */ |
| 32 | 33 | public function raiseCallbackEvent($eventArgument); |
| 33 | 34 | } |
| 34 | 35 | \ No newline at end of file |
@@ -87,7 +87,7 @@ |
||
| 87 | 87 | |
| 88 | 88 | /** |
| 89 | 89 | * Creates a control used for repetition (used as a template). |
| 90 | - * @return TControl the control to be repeated |
|
| 90 | + * @return TActiveCheckBoxListItem the control to be repeated |
|
| 91 | 91 | */ |
| 92 | 92 | protected function createRepeatedControl() |
| 93 | 93 | { |
@@ -252,7 +252,7 @@ |
||
| 252 | 252 | } |
| 253 | 253 | |
| 254 | 254 | /** |
| 255 | - * @return boolean true to observe changes. |
|
| 255 | + * @return boolean|string true to observe changes. |
|
| 256 | 256 | */ |
| 257 | 257 | public function getObserveChanges() |
| 258 | 258 | { |
@@ -233,6 +233,8 @@ |
||
| 233 | 233 | |
| 234 | 234 | /** |
| 235 | 235 | * Appends data or javascript code to the body content surrounded with delimiters |
| 236 | + * @param \Prado\Web\THttpResponse $response |
|
| 237 | + * @param string $delimiter |
|
| 236 | 238 | */ |
| 237 | 239 | private function appendContentPart($response, $delimiter, $data) |
| 238 | 240 | { |
@@ -76,7 +76,7 @@ |
||
| 76 | 76 | |
| 77 | 77 | /** |
| 78 | 78 | * Creates a control used for repetition (used as a template). |
| 79 | - * @return TControl the control to be repeated |
|
| 79 | + * @return TActiveRadioButtonItem the control to be repeated |
|
| 80 | 80 | */ |
| 81 | 81 | protected function createRepeatedControl() |
| 82 | 82 | { |
@@ -113,6 +113,7 @@ |
||
| 113 | 113 | * method, be sure to call the parent implementation so that the event |
| 114 | 114 | * handler can be invoked. |
| 115 | 115 | * @param TActiveTableCellEventParameter event parameter to be passed to the event handlers |
| 116 | + * @param TActiveTableCellEventParameter $param |
|
| 116 | 117 | */ |
| 117 | 118 | public function onCellSelected($param) |
| 118 | 119 | { |