@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param bool $recursive |
28 | - * @param array $skipMembers |
|
28 | + * @param string[] $skipMembers |
|
29 | 29 | * |
30 | 30 | * @return $this |
31 | 31 | */ |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | } |
131 | 131 | |
132 | 132 | /** |
133 | - * @param $property |
|
133 | + * @param string $property |
|
134 | 134 | * |
135 | 135 | * @return null |
136 | 136 | */ |
@@ -51,7 +51,7 @@ |
||
51 | 51 | * @see \Core\Repository\Filter\AbstractPaginationQuery::createQuery() |
52 | 52 | * @param $params |
53 | 53 | * @param \Doctrine\ODM\MongoDB\Query\Builder $queryBuilder |
54 | - * @return mixed |
|
54 | + * @return \Doctrine\ODM\MongoDB\Query\Builder |
|
55 | 55 | */ |
56 | 56 | public function createQuery($params, $queryBuilder) |
57 | 57 | { |
@@ -238,7 +238,7 @@ |
||
238 | 238 | /** |
239 | 239 | * Gets all comments for the application. |
240 | 240 | * |
241 | - * @return ArrayCollection; |
|
241 | + * @return Collection |
|
242 | 242 | |
243 | 243 | */ |
244 | 244 | public function getComments(); |
@@ -22,6 +22,9 @@ |
||
22 | 22 | */ |
23 | 23 | trait EntityTrait |
24 | 24 | { |
25 | + /** |
|
26 | + * @param string $property |
|
27 | + */ |
|
25 | 28 | public function notEmpty($property, array $args=[]) |
26 | 29 | { |
27 | 30 | $method = "get$property"; |
@@ -73,6 +73,9 @@ |
||
73 | 73 | |
74 | 74 | } |
75 | 75 | |
76 | + /** |
|
77 | + * @param string $layout |
|
78 | + */ |
|
76 | 79 | public function renderElement($element, $layout, $parameter) |
77 | 80 | { |
78 | 81 | $parameterPartial = $parameter; |
@@ -79,7 +79,6 @@ |
||
79 | 79 | /** |
80 | 80 | * Sets the invoice address. |
81 | 81 | * |
82 | - * @param InvoiceAddressInterface $invoice |
|
83 | 82 | * |
84 | 83 | * @return self |
85 | 84 | */ |
@@ -36,7 +36,7 @@ |
||
36 | 36 | * |
37 | 37 | * @param ServiceLocatorInterface $serviceLocator |
38 | 38 | * |
39 | - * @return mixed |
|
39 | + * @return InvoiceAddress |
|
40 | 40 | */ |
41 | 41 | public function createService(ServiceLocatorInterface $serviceLocator) |
42 | 42 | { |
@@ -27,7 +27,7 @@ |
||
27 | 27 | * |
28 | 28 | * @param ServiceLocatorInterface $serviceLocator |
29 | 29 | * |
30 | - * @return mixed |
|
30 | + * @return EventApplicationCreated |
|
31 | 31 | */ |
32 | 32 | public function createService(ServiceLocatorInterface $serviceLocator) |
33 | 33 | { |
@@ -98,7 +98,7 @@ |
||
98 | 98 | /** |
99 | 99 | * Gets an iterator to iterate over the enabled formulars. |
100 | 100 | * |
101 | - * @return \ArrayIterator |
|
101 | + * @return PriorityList |
|
102 | 102 | * @see IteratorAggregate::getIterator() |
103 | 103 | */ |
104 | 104 | public function getIterator() |