@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | } |
| 114 | 114 | |
| 115 | 115 | /** |
| 116 | - * @param $user |
|
| 116 | + * @param \Core\Entity\EntityInterface $user |
|
| 117 | 117 | * @return $this |
| 118 | 118 | */ |
| 119 | 119 | protected function setUser($user) |
@@ -205,7 +205,7 @@ discard block |
||
| 205 | 205 | /** |
| 206 | 206 | * Email-Address |
| 207 | 207 | * @param $email string |
| 208 | - * @return mixed |
|
| 208 | + * @return Register |
|
| 209 | 209 | */ |
| 210 | 210 | protected function setEmail($email) |
| 211 | 211 | { |
@@ -23,6 +23,9 @@ |
||
| 23 | 23 | |
| 24 | 24 | protected $filter; |
| 25 | 25 | |
| 26 | + /** |
|
| 27 | + * @param StripQueryParamsFilter $filter |
|
| 28 | + */ |
|
| 26 | 29 | public function setFilter($filter) |
| 27 | 30 | { |
| 28 | 31 | $this->filter = $filter; |
@@ -23,6 +23,9 @@ discard block |
||
| 23 | 23 | |
| 24 | 24 | protected $filter; |
| 25 | 25 | |
| 26 | + /** |
|
| 27 | + * @param StripQueryParamsFilter $filter |
|
| 28 | + */ |
|
| 26 | 29 | public function setFilter($filter) |
| 27 | 30 | { |
| 28 | 31 | $this->filter = $filter; |
@@ -44,7 +47,6 @@ discard block |
||
| 44 | 47 | * Returns a property value of the authenticated user or null, if |
| 45 | 48 | * no user is authenticated or the property does not exists. |
| 46 | 49 | * |
| 47 | - * @param string $property |
|
| 48 | 50 | * @return \Auth\View\Helper\Auth|NULL |
| 49 | 51 | */ |
| 50 | 52 | public function __invoke($uri, array $stripParams = null) |
@@ -14,7 +14,7 @@ |
||
| 14 | 14 | * Create the settings service |
| 15 | 15 | * |
| 16 | 16 | * @param ServiceLocatorInterface $serviceLocator |
| 17 | - * @return ControllerManager |
|
| 17 | + * @return Config |
|
| 18 | 18 | */ |
| 19 | 19 | public function createService(ServiceLocatorInterface $serviceLocator) |
| 20 | 20 | { |
@@ -78,7 +78,7 @@ |
||
| 78 | 78 | } |
| 79 | 79 | |
| 80 | 80 | /** |
| 81 | - * @return mixed |
|
| 81 | + * @return RepositoryInterface |
|
| 82 | 82 | */ |
| 83 | 83 | public function getRepositories() |
| 84 | 84 | { |
@@ -125,7 +125,7 @@ |
||
| 125 | 125 | } |
| 126 | 126 | |
| 127 | 127 | /** |
| 128 | - * @return number $itemsPerPage |
|
| 128 | + * @return integer $itemsPerPage |
|
| 129 | 129 | */ |
| 130 | 130 | public function getItemsPerPage() |
| 131 | 131 | { |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | /** |
| 32 | 32 | * Get the current controller instance |
| 33 | 33 | * |
| 34 | - * @return null|Dispatchable |
|
| 34 | + * @return Dispatchable |
|
| 35 | 35 | */ |
| 36 | 36 | public function getController() |
| 37 | 37 | { |
@@ -45,6 +45,9 @@ discard block |
||
| 45 | 45 | return $this; |
| 46 | 46 | } |
| 47 | 47 | |
| 48 | + /** |
|
| 49 | + * @param AddressList $header |
|
| 50 | + */ |
|
| 48 | 51 | protected function stringFromMailHeader($header) |
| 49 | 52 | { |
| 50 | 53 | $erg = ''; |
@@ -133,6 +136,9 @@ discard block |
||
| 133 | 136 | } |
| 134 | 137 | } |
| 135 | 138 | |
| 139 | + /** |
|
| 140 | + * @return string |
|
| 141 | + */ |
|
| 136 | 142 | protected function getTemplate() |
| 137 | 143 | { |
| 138 | 144 | $template = null; |
@@ -43,6 +43,9 @@ |
||
| 43 | 43 | ); |
| 44 | 44 | } |
| 45 | 45 | |
| 46 | + /** |
|
| 47 | + * @return Message |
|
| 48 | + */ |
|
| 46 | 49 | public function get($mailPluginName, array $options = array()) |
| 47 | 50 | { |
| 48 | 51 | return $this->getMailService()->get($mailPluginName, $options); |
@@ -53,7 +53,7 @@ |
||
| 53 | 53 | * Sets pagination params and stores them in the session. |
| 54 | 54 | * |
| 55 | 55 | * @param String $namespace |
| 56 | - * @param array|Parameters $params |
|
| 56 | + * @param \Zend\Stdlib\ParametersInterface $params |
|
| 57 | 57 | * @return \Core\Controller\Plugin\PaginationParams fluent interface |
| 58 | 58 | */ |
| 59 | 59 | public function setParams($namespace, $params) |