@@ -270,7 +270,7 @@ discard block |
||
| 270 | 270 | /** |
| 271 | 271 | * generate template object |
| 272 | 272 | * @param Template $template |
| 273 | - * @return ProductTable |
|
| 273 | + * @return Table |
|
| 274 | 274 | */ |
| 275 | 275 | public function setTemplate( $template = null ) { |
| 276 | 276 | if ($template == null) { |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | /** |
| 293 | 293 | * set new table data |
| 294 | 294 | * @param mixed $data |
| 295 | - * @return ProductTable |
|
| 295 | + * @return Table |
|
| 296 | 296 | */ |
| 297 | 297 | public function setData( $data = null) { |
| 298 | 298 | if ( is_array($data) ) { |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | /** |
| 321 | 321 | * @param object|array $options |
| 322 | - * @return ProductTable |
|
| 322 | + * @return Table |
|
| 323 | 323 | */ |
| 324 | 324 | public function setOptions($options) { |
| 325 | 325 | if ( is_array($options) ) { |
@@ -220,7 +220,7 @@ |
||
| 220 | 220 | // |
| 221 | 221 | |
| 222 | 222 | /** |
| 223 | - * @return the $tagname |
|
| 223 | + * @return string $tagname |
|
| 224 | 224 | */ |
| 225 | 225 | public function getTagname() { |
| 226 | 226 | return $this->tagname; |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | * If no container is set, a new container will be instantiated and |
| 114 | 114 | * stored in the helper. |
| 115 | 115 | * |
| 116 | - * @return Navigation\AbstractContainer navigation container |
|
| 116 | + * @return AbstractContainer navigation container |
|
| 117 | 117 | */ |
| 118 | 118 | public function getContainer() |
| 119 | 119 | { |
@@ -338,7 +338,7 @@ discard block |
||
| 338 | 338 | * {@link getMinDepth()}. A |
| 339 | 339 | * null value means no minimum |
| 340 | 340 | * depth required. |
| 341 | - * @param int|null $maxDepth [optional] maximum depth |
|
| 341 | + * @param integer $maxDepth [optional] maximum depth |
|
| 342 | 342 | * a page can have to be |
| 343 | 343 | * valid. Default is to use |
| 344 | 344 | * {@link getMaxDepth()}. A |
@@ -479,7 +479,7 @@ discard block |
||
| 479 | 479 | } |
| 480 | 480 | |
| 481 | 481 | /** |
| 482 | - * @return the $defaultLiClass |
|
| 482 | + * @return string $defaultLiClass |
|
| 483 | 483 | */ |
| 484 | 484 | public function getDefaultLiClass() { |
| 485 | 485 | return $this->defaultLiClass; |
@@ -494,7 +494,7 @@ discard block |
||
| 494 | 494 | } |
| 495 | 495 | |
| 496 | 496 | /** |
| 497 | - * @return the $subUlClass |
|
| 497 | + * @return string $subUlClass |
|
| 498 | 498 | */ |
| 499 | 499 | public function getSubUlClass() { |
| 500 | 500 | return $this->subUlClass; |
@@ -509,7 +509,7 @@ discard block |
||
| 509 | 509 | } |
| 510 | 510 | |
| 511 | 511 | /** |
| 512 | - * @return the $subUlClassLevel1 |
|
| 512 | + * @return string $subUlClassLevel1 |
|
| 513 | 513 | */ |
| 514 | 514 | public function getSubUlClassLevel1() { |
| 515 | 515 | return $this->subUlClassLevel1; |
@@ -524,7 +524,7 @@ discard block |
||
| 524 | 524 | } |
| 525 | 525 | |
| 526 | 526 | /** |
| 527 | - * @return the $subLiClass |
|
| 527 | + * @return string $subLiClass |
|
| 528 | 528 | */ |
| 529 | 529 | public function getSubLiClass() { |
| 530 | 530 | return $this->subLiClass; |
@@ -539,7 +539,7 @@ discard block |
||
| 539 | 539 | } |
| 540 | 540 | |
| 541 | 541 | /** |
| 542 | - * @return the $subLiClassLevel0 |
|
| 542 | + * @return string $subLiClassLevel0 |
|
| 543 | 543 | */ |
| 544 | 544 | public function getSubLiClassLevel0() { |
| 545 | 545 | return $this->subLiClassLevel0; |
@@ -554,7 +554,7 @@ discard block |
||
| 554 | 554 | } |
| 555 | 555 | |
| 556 | 556 | /** |
| 557 | - * @return the $iconPrefixClass |
|
| 557 | + * @return string $iconPrefixClass |
|
| 558 | 558 | */ |
| 559 | 559 | public function getIconPrefixClass() { |
| 560 | 560 | return $this->iconPrefixClass; |
@@ -569,7 +569,7 @@ discard block |
||
| 569 | 569 | } |
| 570 | 570 | |
| 571 | 571 | /** |
| 572 | - * @return the $hrefSubToggleOverride |
|
| 572 | + * @return string $hrefSubToggleOverride |
|
| 573 | 573 | */ |
| 574 | 574 | public function getHrefSubToggleOverride() { |
| 575 | 575 | return $this->hrefSubToggleOverride; |
@@ -66,8 +66,8 @@ discard block |
||
| 66 | 66 | * |
| 67 | 67 | * Implements {@link HelperInterface::setAcl()}. |
| 68 | 68 | * |
| 69 | - * @param Acl\AclInterface $acl ACL object. |
|
| 70 | - * @return AbstractHelper |
|
| 69 | + * @param AclInterface $acl ACL object. |
|
| 70 | + * @return ComponentAclTrait |
|
| 71 | 71 | */ |
| 72 | 72 | public function setAcl(AclInterface $acl = null) |
| 73 | 73 | { |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | * @param mixed $role [optional] role to set. Expects a string, an |
| 119 | 119 | * instance of type {@link Acl\Role\RoleInterface}, or null. Default |
| 120 | 120 | * is null, which will set no role. |
| 121 | - * @return AbstractHelper |
|
| 121 | + * @return ComponentAclTrait |
|
| 122 | 122 | * @throws Exception\InvalidArgumentException |
| 123 | 123 | */ |
| 124 | 124 | public function setRole($role = null) |
@@ -181,7 +181,7 @@ discard block |
||
| 181 | 181 | * Implements {@link HelperInterface::setUseAcl()}. |
| 182 | 182 | * |
| 183 | 183 | * @param bool $useAcl |
| 184 | - * @return AbstractHelper |
|
| 184 | + * @return ComponentAclTrait |
|
| 185 | 185 | */ |
| 186 | 186 | public function setUseAcl($useAcl = true) |
| 187 | 187 | { |
@@ -237,7 +237,7 @@ |
||
| 237 | 237 | * {@link getMinDepth()}. A |
| 238 | 238 | * null value means no minimum |
| 239 | 239 | * depth required. |
| 240 | - * @param int|null $maxDepth [optional] maximum depth |
|
| 240 | + * @param integer $maxDepth [optional] maximum depth |
|
| 241 | 241 | * a page can have to be |
| 242 | 242 | * valid. Default is to use |
| 243 | 243 | * {@link getMaxDepth()}. A |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | * Set the event manager. |
| 41 | 41 | * |
| 42 | 42 | * @param EventManagerInterface $events |
| 43 | - * @return AbstractHelper |
|
| 43 | + * @return ComponentServiceManagersTrait |
|
| 44 | 44 | */ |
| 45 | 45 | public function setEventManager(EventManagerInterface $events) |
| 46 | 46 | { |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | * Set the service locator. |
| 92 | 92 | * |
| 93 | 93 | * @param ServiceLocatorInterface $serviceLocator |
| 94 | - * @return AbstractHelper |
|
| 94 | + * @return ComponentServiceManagersTrait |
|
| 95 | 95 | */ |
| 96 | 96 | public function setServiceLocator(ServiceLocatorInterface $serviceLocator) |
| 97 | 97 | { |
@@ -30,7 +30,7 @@ |
||
| 30 | 30 | * Helper entry point |
| 31 | 31 | * |
| 32 | 32 | * @param string|AbstractContainer $container container to operate on |
| 33 | - * @return Bootstrap |
|
| 33 | + * @return Utilities |
|
| 34 | 34 | */ |
| 35 | 35 | public function __invoke($container = null) |
| 36 | 36 | { |
@@ -27,8 +27,7 @@ discard block |
||
| 27 | 27 | * View helper entry point: |
| 28 | 28 | * Retrieves helper and optionally sets container to operate on |
| 29 | 29 | * |
| 30 | - * @param AbstractContainer $container [optional] container to operate on |
|
| 31 | - * @return self |
|
| 30 | + * @return \Zend\Config\Config |
|
| 32 | 31 | */ |
| 33 | 32 | public function __invoke() |
| 34 | 33 | { |
@@ -38,7 +37,7 @@ discard block |
||
| 38 | 37 | /** |
| 39 | 38 | * render nothing |
| 40 | 39 | * |
| 41 | - * @return string |
|
| 40 | + * @return \Zend\Config\Config |
|
| 42 | 41 | */ |
| 43 | 42 | public function render($container = null) |
| 44 | 43 | { |
@@ -12,7 +12,7 @@ |
||
| 12 | 12 | * |
| 13 | 13 | * @param ServiceLocatorInterface $serviceLocator |
| 14 | 14 | * |
| 15 | - * @return mixed |
|
| 15 | + * @return IndexController |
|
| 16 | 16 | */ |
| 17 | 17 | public function createService(ServiceLocatorInterface $serviceLocator) |
| 18 | 18 | { |