@@ -158,8 +158,8 @@ |
||
158 | 158 | * Build query statement from the expression. |
159 | 159 | * |
160 | 160 | * @param array $expression |
161 | - * @param null $limit |
|
162 | - * @param null $offset |
|
161 | + * @param integer|null $limit |
|
162 | + * @param integer|null $offset |
|
163 | 163 | * |
164 | 164 | * @return PDOStatement |
165 | 165 | */ |
@@ -192,7 +192,7 @@ |
||
192 | 192 | /** |
193 | 193 | * Sets service argument. |
194 | 194 | * |
195 | - * @param string|Definition $service |
|
195 | + * @param Definition $service |
|
196 | 196 | * @param mixed $parameter |
197 | 197 | * |
198 | 198 | * @throws InitException |
@@ -71,7 +71,7 @@ |
||
71 | 71 | * |
72 | 72 | * @param mixed $userId |
73 | 73 | * |
74 | - * @return UserMetaEntity[] |
|
74 | + * @return boolean |
|
75 | 75 | */ |
76 | 76 | public function getUserMetaForUserId($userId) |
77 | 77 | { |
@@ -37,7 +37,7 @@ |
||
37 | 37 | * @param DataEntityInterface $entity |
38 | 38 | * @param array $data |
39 | 39 | */ |
40 | - protected function populateEntity(DataEntityInterface &$entity, array $data) |
|
40 | + protected function populateEntity(DataEntityInterface&$entity, array $data) |
|
41 | 41 | { |
42 | 42 | /* @var UserMetaEntity $entity */ |
43 | 43 | $entity->setUserMetaId($data[$this->idKey]) |
@@ -52,7 +52,7 @@ |
||
52 | 52 | * @param DataEntityInterface $entity |
53 | 53 | * @param array $data |
54 | 54 | */ |
55 | - protected function populateEntity(DataEntityInterface &$entity, array $data) |
|
55 | + protected function populateEntity(DataEntityInterface&$entity, array $data) |
|
56 | 56 | { |
57 | 57 | /* @var UserEntity $entity */ |
58 | 58 | $entity->setUserId($data[$this->idKey]) |
@@ -89,5 +89,5 @@ |
||
89 | 89 | * @param DataEntityInterface $entity |
90 | 90 | * @param array $data |
91 | 91 | */ |
92 | - abstract protected function populateEntity(DataEntityInterface &$entity, array $data); |
|
92 | + abstract protected function populateEntity(DataEntityInterface&$entity, array $data); |
|
93 | 93 | } |