@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | /** |
| 376 | 376 | * Dispatcher working method |
| 377 | 377 | * |
| 378 | - * @return mixed |
|
| 378 | + * @return string |
|
| 379 | 379 | */ |
| 380 | 380 | final public function dispatch() { |
| 381 | 381 | |
@@ -696,7 +696,7 @@ discard block |
||
| 696 | 696 | /** |
| 697 | 697 | * Return dispatcher baseurl, no matter the request |
| 698 | 698 | * |
| 699 | - * @return uri The baseurl |
|
| 699 | + * @return string The baseurl |
|
| 700 | 700 | */ |
| 701 | 701 | private function urlGetAbsolute($service=null) { |
| 702 | 702 | |
@@ -845,6 +845,9 @@ discard block |
||
| 845 | 845 | |
| 846 | 846 | } |
| 847 | 847 | |
| 848 | + /** |
|
| 849 | + * @return ObjectResultInterface |
|
| 850 | + */ |
|
| 848 | 851 | private function runService(ObjectRequest $request, ObjectRoute $route) { |
| 849 | 852 | |
| 850 | 853 | $method = $request->getMethod(); |
@@ -977,7 +980,7 @@ discard block |
||
| 977 | 980 | /** |
| 978 | 981 | * Route request handling ObjectResult hooks |
| 979 | 982 | * |
| 980 | - * @param ObjectResult $route An implementation of ObjectResultInterface |
|
| 983 | + * @param ObjectResultInterface $route An implementation of ObjectResultInterface |
|
| 981 | 984 | * @return string Content (stuff that will go on screen) |
| 982 | 985 | */ |
| 983 | 986 | private function route(ObjectResultInterface $route) { |
@@ -116,7 +116,7 @@ discard block |
||
| 116 | 116 | * |
| 117 | 117 | * @param bool $bool |
| 118 | 118 | * |
| 119 | - * @return Object $this |
|
| 119 | + * @return XML $this |
|
| 120 | 120 | */ |
| 121 | 121 | final public function setIncludeHeader($bool) { |
| 122 | 122 | |
@@ -131,7 +131,7 @@ discard block |
||
| 131 | 131 | * |
| 132 | 132 | * @param int $int |
| 133 | 133 | * |
| 134 | - * @return Object $this |
|
| 134 | + * @return XML $this |
|
| 135 | 135 | */ |
| 136 | 136 | final public function setCaseFolding($int) { |
| 137 | 137 | |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | * |
| 147 | 147 | * @param int $int |
| 148 | 148 | * |
| 149 | - * @return Object $this |
|
| 149 | + * @return XML $this |
|
| 150 | 150 | */ |
| 151 | 151 | final public function setSkipWhite($int) { |
| 152 | 152 | |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | * |
| 162 | 162 | * @param string $encoding |
| 163 | 163 | * |
| 164 | - * @return Object $this |
|
| 164 | + * @return XML $this |
|
| 165 | 165 | */ |
| 166 | 166 | final public function setEncoding($encoding) { |
| 167 | 167 | |
@@ -219,6 +219,7 @@ discard block |
||
| 219 | 219 | /** |
| 220 | 220 | * encode XML string into array |
| 221 | 221 | * |
| 222 | + * @param string $xml |
|
| 222 | 223 | * @return array |
| 223 | 224 | */ |
| 224 | 225 | public function decode($xml, $encoding=null) { |
@@ -306,6 +307,7 @@ discard block |
||
| 306 | 307 | /** |
| 307 | 308 | * Get element childs (if any) |
| 308 | 309 | * |
| 310 | + * @param integer $i |
|
| 309 | 311 | * @return array |
| 310 | 312 | */ |
| 311 | 313 | private function getChilds(&$i) { |