@@ -556,7 +556,7 @@ |
||
| 556 | 556 | } |
| 557 | 557 | |
| 558 | 558 | /** |
| 559 | - * @param array $classNames |
|
| 559 | + * @param string[] $classNames |
|
| 560 | 560 | * |
| 561 | 561 | * @return void |
| 562 | 562 | * |
@@ -52,7 +52,7 @@ |
||
| 52 | 52 | protected $secondLevelCacheDriverImpl = null; |
| 53 | 53 | |
| 54 | 54 | /** |
| 55 | - * @param array $paths |
|
| 55 | + * @param string[] $paths |
|
| 56 | 56 | * @param mixed $alias |
| 57 | 57 | * |
| 58 | 58 | * @return \Doctrine\ORM\Mapping\Driver\AnnotationDriver |
@@ -90,6 +90,9 @@ |
||
| 90 | 90 | return $this->name; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | + /** |
|
| 94 | + * @param string $name |
|
| 95 | + */ |
|
| 93 | 96 | public function setName($name) |
| 94 | 97 | { |
| 95 | 98 | $this->name = $name; |
@@ -90,6 +90,9 @@ |
||
| 90 | 90 | return $this->name; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | + /** |
|
| 94 | + * @param string $name |
|
| 95 | + */ |
|
| 93 | 96 | public function setName($name) |
| 94 | 97 | { |
| 95 | 98 | $this->name = $name; |
@@ -90,6 +90,9 @@ |
||
| 90 | 90 | return $this->name; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | + /** |
|
| 94 | + * @param string $name |
|
| 95 | + */ |
|
| 93 | 96 | public function setName($name) |
| 94 | 97 | { |
| 95 | 98 | $this->name = $name; |
@@ -51,6 +51,10 @@ |
||
| 51 | 51 | $this->_em = $this->_getTestEntityManager(); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | + /** |
|
| 55 | + * @param string $dqlToBeTested |
|
| 56 | + * @param string $sqlToBeConfirmed |
|
| 57 | + */ |
|
| 54 | 58 | public function assertSqlGeneration($dqlToBeTested, $sqlToBeConfirmed) |
| 55 | 59 | { |
| 56 | 60 | try { |
@@ -51,6 +51,10 @@ |
||
| 51 | 51 | $this->_em = $this->_getTestEntityManager(); |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | + /** |
|
| 55 | + * @param string $dqlToBeTested |
|
| 56 | + * @param string $sqlToBeConfirmed |
|
| 57 | + */ |
|
| 54 | 58 | public function assertSqlGeneration($dqlToBeTested, $sqlToBeConfirmed) |
| 55 | 59 | { |
| 56 | 60 | try { |
@@ -83,6 +83,7 @@ |
||
| 83 | 83 | |
| 84 | 84 | /** |
| 85 | 85 | * {@inheritDoc} |
| 86 | + * @param string $value |
|
| 86 | 87 | */ |
| 87 | 88 | public function setValue($object, $value = null) |
| 88 | 89 | { |
@@ -4,7 +4,6 @@ |
||
| 4 | 4 | |
| 5 | 5 | use Doctrine\Instantiator\Instantiator; |
| 6 | 6 | use Doctrine\ORM\Mapping\ReflectionEmbeddedProperty; |
| 7 | -use Doctrine\Tests\Models\Mapping\Entity; |
|
| 8 | 7 | use ReflectionProperty; |
| 9 | 8 | |
| 10 | 9 | /** |