@@ -44,7 +44,7 @@ |
||
| 44 | 44 | /** |
| 45 | 45 | * @param int $type |
| 46 | 46 | * |
| 47 | - * @return mixed |
|
| 47 | + * @return string|false |
|
| 48 | 48 | */ |
| 49 | 49 | private function getOperator($type) |
| 50 | 50 | { |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | - * @param ProxyQueryInterface|QueryBuilder $queryBuilder |
|
| 49 | + * @param ProxyQueryInterface $queryBuilder |
|
| 50 | 50 | * @param mixed $parameter |
| 51 | 51 | */ |
| 52 | 52 | protected function applyWhere(ProxyQueryInterface $queryBuilder, $parameter) |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | /** |
| 43 | 43 | * @param string $type |
| 44 | 44 | * |
| 45 | - * @return bool |
|
| 45 | + * @return string|false |
|
| 46 | 46 | */ |
| 47 | 47 | private function getOperator($type) |
| 48 | 48 | { |
@@ -618,7 +618,7 @@ |
||
| 618 | 618 | * |
| 619 | 619 | * @param string $property |
| 620 | 620 | * |
| 621 | - * @return mixed |
|
| 621 | + * @return string |
|
| 622 | 622 | */ |
| 623 | 623 | protected function camelize($property) |
| 624 | 624 | { |
@@ -168,7 +168,7 @@ |
||
| 168 | 168 | |
| 169 | 169 | /** |
| 170 | 170 | * @param string $type |
| 171 | - * @param array $classes |
|
| 171 | + * @param string[] $classes |
|
| 172 | 172 | * |
| 173 | 173 | * @return array |
| 174 | 174 | */ |
@@ -124,7 +124,7 @@ discard block |
||
| 124 | 124 | } |
| 125 | 125 | |
| 126 | 126 | /** |
| 127 | - * @return array |
|
| 127 | + * @return string[] |
|
| 128 | 128 | */ |
| 129 | 129 | public function getAllAliases() |
| 130 | 130 | { |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
| 135 | - * @return array |
|
| 135 | + * @return string[] |
|
| 136 | 136 | */ |
| 137 | 137 | public function getRootAliases() |
| 138 | 138 | { |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | /** |
| 43 | 43 | * @param string $type |
| 44 | 44 | * |
| 45 | - * @return bool |
|
| 45 | + * @return string|false |
|
| 46 | 46 | */ |
| 47 | 47 | private function getOperator($type) |
| 48 | 48 | { |
@@ -500,6 +500,9 @@ |
||
| 500 | 500 | $this->assertSame('hello', $object->getMultiWordProperty()); |
| 501 | 501 | } |
| 502 | 502 | |
| 503 | + /** |
|
| 504 | + * @param string $class |
|
| 505 | + */ |
|
| 503 | 506 | private function getMetadata($class, $isVersioned) |
| 504 | 507 | { |
| 505 | 508 | $metadata = new ClassMetadata($class); |
@@ -195,7 +195,7 @@ discard block |
||
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | /** |
| 198 | - * @return mixed |
|
| 198 | + * @return QueryBuilder |
|
| 199 | 199 | */ |
| 200 | 200 | public function getQueryBuilder() |
| 201 | 201 | { |
@@ -288,7 +288,7 @@ discard block |
||
| 288 | 288 | * Sets a {@see \Doctrine\ORM\Query} hint. If the hint name is not recognized, it is silently ignored. |
| 289 | 289 | * |
| 290 | 290 | * @param string $name the name of the hint |
| 291 | - * @param mixed $value the value of the hint |
|
| 291 | + * @param string $value the value of the hint |
|
| 292 | 292 | * |
| 293 | 293 | * @return ProxyQueryInterface |
| 294 | 294 | * |