@@ -215,6 +215,7 @@ discard block |
||
| 215 | 215 | * |
| 216 | 216 | * @access private |
| 217 | 217 | * @param string $source and $dest are strings - database tables structures |
| 218 | + * @param string $dest |
|
| 218 | 219 | * @return array |
| 219 | 220 | * - table (array) |
| 220 | 221 | * - destOrphan (boolean) |
@@ -368,8 +369,8 @@ discard block |
||
| 368 | 369 | * returns array of fields or keys definitions that differs in the given tables structure |
| 369 | 370 | * |
| 370 | 371 | * @access private |
| 371 | - * @param sring $sourceSql table structure |
|
| 372 | - * @param sring $destSql right table structure supports some $options |
|
| 372 | + * @param string $sourceSql table structure |
|
| 373 | + * @param string $destSql right table structure supports some $options |
|
| 373 | 374 | * supports some $options |
| 374 | 375 | * @return array |
| 375 | 376 | * - [0] |
@@ -703,6 +704,7 @@ discard block |
||
| 703 | 704 | /** |
| 704 | 705 | * works the same as getDelimPos except returns position of the first occurence of the delimiter starting from |
| 705 | 706 | * the end of the string |
| 707 | + * @param string $string |
|
| 706 | 708 | */ |
| 707 | 709 | public function getDelimRpos($string, $offset=0, $delim=';', $skipInBrackets=false) |
| 708 | 710 | { |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | * |
| 27 | 27 | * @param ServiceLocatorInterface $serviceLocator |
| 28 | 28 | * |
| 29 | - * @return mixed |
|
| 29 | + * @return ComponentsController |
|
| 30 | 30 | */ |
| 31 | 31 | public function createService(ServiceLocatorInterface $serviceLocator) |
| 32 | 32 | { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * in the static templates with dynamic data. |
| 116 | 116 | * |
| 117 | 117 | * @param $which String 's' for Static or else dynamic |
| 118 | - * @param $needle String Placeholder |
|
| 118 | + * @param string $needle String Placeholder |
|
| 119 | 119 | * @param $replacement String Replacement String |
| 120 | 120 | * |
| 121 | 121 | * @return self |
@@ -139,7 +139,7 @@ discard block |
||
| 139 | 139 | /** |
| 140 | 140 | * Sets an encoding for the template's head block. |
| 141 | 141 | * |
| 142 | - * @param $encoding string Encoding to set |
|
| 142 | + * @param string $encoding string Encoding to set |
|
| 143 | 143 | * @return self |
| 144 | 144 | */ |
| 145 | 145 | public function setEncoding ($encoding) |
@@ -245,7 +245,7 @@ discard block |
||
| 245 | 245 | * Replaces a named function with the translated variant |
| 246 | 246 | * |
| 247 | 247 | * @param $template string Contents of the template to translate (it is reference to save memory!!!) |
| 248 | - * @param $functionName string Name of the translation function (e.g. i18n) |
|
| 248 | + * @param string $functionName string Name of the translation function (e.g. i18n) |
|
| 249 | 249 | * @return self |
| 250 | 250 | */ |
| 251 | 251 | public function replacei18n(& $template, $functionName) { |
@@ -385,7 +385,7 @@ |
||
| 385 | 385 | /** |
| 386 | 386 | * get DOM object |
| 387 | 387 | * |
| 388 | - * @return the $_DOMDoc |
|
| 388 | + * @return \DOMDocument $_DOMDoc |
|
| 389 | 389 | */ |
| 390 | 390 | public function getDOMDoc() { |
| 391 | 391 | if ( ! $this->_DOMDoc instanceof \DOMDocument ) { |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | * Sets the default proxy to use in {@link render()} |
| 265 | 265 | * |
| 266 | 266 | * @param string $proxy default proxy |
| 267 | - * @return Bootstrap |
|
| 267 | + * @return AbstractProxyHelper |
|
| 268 | 268 | */ |
| 269 | 269 | public function setDefaultProxy($proxy) |
| 270 | 270 | { |
@@ -286,7 +286,7 @@ discard block |
||
| 286 | 286 | * Sets whether container should be injected when proxying |
| 287 | 287 | * |
| 288 | 288 | * @param bool $injectContainer |
| 289 | - * @return Bootstrap |
|
| 289 | + * @return AbstractProxyHelper |
|
| 290 | 290 | */ |
| 291 | 291 | public function setInjectContainer($injectContainer = true) |
| 292 | 292 | { |
@@ -308,7 +308,7 @@ discard block |
||
| 308 | 308 | * Sets whether ACL should be injected when proxying |
| 309 | 309 | * |
| 310 | 310 | * @param bool $injectAcl |
| 311 | - * @return NavigBootstrapation |
|
| 311 | + * @return AbstractProxyHelper |
|
| 312 | 312 | */ |
| 313 | 313 | public function setInjectAcl($injectAcl = true) |
| 314 | 314 | { |
@@ -330,7 +330,7 @@ discard block |
||
| 330 | 330 | * Sets whether translator should be injected when proxying |
| 331 | 331 | * |
| 332 | 332 | * @param bool $injectTranslator |
| 333 | - * @return Bootstrap |
|
| 333 | + * @return AbstractProxyHelper |
|
| 334 | 334 | */ |
| 335 | 335 | public function setInjectTranslator($injectTranslator = true) |
| 336 | 336 | { |
@@ -32,7 +32,6 @@ |
||
| 32 | 32 | /** |
| 33 | 33 | * Helper entry point |
| 34 | 34 | * |
| 35 | - * @param string|AbstractContainer $container container to operate on |
|
| 36 | 35 | * @return Components |
| 37 | 36 | */ |
| 38 | 37 | public function __invoke($options = array()) |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | } |
| 147 | 147 | |
| 148 | 148 | /** |
| 149 | - * @return the $olClass |
|
| 149 | + * @return string $olClass |
|
| 150 | 150 | */ |
| 151 | 151 | public function getOlClass() { |
| 152 | 152 | return $this->olClass; |
@@ -163,7 +163,7 @@ discard block |
||
| 163 | 163 | } |
| 164 | 164 | |
| 165 | 165 | /** |
| 166 | - * @return the $liClass |
|
| 166 | + * @return string $liClass |
|
| 167 | 167 | */ |
| 168 | 168 | public function getLiClass() { |
| 169 | 169 | return $this->liClass; |
@@ -180,7 +180,7 @@ discard block |
||
| 180 | 180 | } |
| 181 | 181 | |
| 182 | 182 | /** |
| 183 | - * @return the $noList |
|
| 183 | + * @return boolean $noList |
|
| 184 | 184 | */ |
| 185 | 185 | public function getNoList() { |
| 186 | 186 | return $this->noList; |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | } |
| 198 | 198 | |
| 199 | 199 | /** |
| 200 | - * @return the $header |
|
| 200 | + * @return string $header |
|
| 201 | 201 | */ |
| 202 | 202 | public function getHeader() { |
| 203 | 203 | return $this->header; |
@@ -214,7 +214,7 @@ discard block |
||
| 214 | 214 | } |
| 215 | 215 | |
| 216 | 216 | /** |
| 217 | - * @return the $headerClass |
|
| 217 | + * @return string $headerClass |
|
| 218 | 218 | */ |
| 219 | 219 | public function getHeaderClass() { |
| 220 | 220 | return $this->headerClass; |
@@ -174,7 +174,7 @@ discard block |
||
| 174 | 174 | |
| 175 | 175 | |
| 176 | 176 | /** |
| 177 | - * @return the $drop |
|
| 177 | + * @return boolean $drop |
|
| 178 | 178 | */ |
| 179 | 179 | public function getDrop() { |
| 180 | 180 | return $this->drop; |
@@ -191,7 +191,7 @@ discard block |
||
| 191 | 191 | } |
| 192 | 192 | |
| 193 | 193 | /** |
| 194 | - * @return the $block |
|
| 194 | + * @return boolean $block |
|
| 195 | 195 | */ |
| 196 | 196 | public function getBlock() { |
| 197 | 197 | return $this->block; |
@@ -206,7 +206,7 @@ discard block |
||
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | /** |
| 209 | - * @return the $active |
|
| 209 | + * @return boolean $active |
|
| 210 | 210 | */ |
| 211 | 211 | public function getActive() { |
| 212 | 212 | return $this->active; |
@@ -95,7 +95,7 @@ |
||
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | /** |
| 98 | - * @return the $block |
|
| 98 | + * @return boolean $block |
|
| 99 | 99 | */ |
| 100 | 100 | public function getBlock() { |
| 101 | 101 | return $this->block; |