@@ -1,15 +1,15 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | /** |
| 3 | - * Doctrine ORM |
|
| 4 | - * |
|
| 5 | - * LICENSE |
|
| 6 | - * |
|
| 7 | - * This source file is subject to the new BSD license that is bundled |
|
| 8 | - * with this package in the file LICENSE.txt. |
|
| 9 | - * If you did not receive a copy of the license and are unable to |
|
| 10 | - * obtain it through the world-wide-web, please send an email |
|
| 11 | - * to [email protected] so I can send you a copy immediately. |
|
| 12 | - */ |
|
| 3 | + * Doctrine ORM |
|
| 4 | + * |
|
| 5 | + * LICENSE |
|
| 6 | + * |
|
| 7 | + * This source file is subject to the new BSD license that is bundled |
|
| 8 | + * with this package in the file LICENSE.txt. |
|
| 9 | + * If you did not receive a copy of the license and are unable to |
|
| 10 | + * obtain it through the world-wide-web, please send an email |
|
| 11 | + * to [email protected] so I can send you a copy immediately. |
|
| 12 | + */ |
|
| 13 | 13 | |
| 14 | 14 | namespace Doctrine\ORM\Tools\Pagination; |
| 15 | 15 | |
@@ -220,7 +220,7 @@ |
||
| 220 | 220 | $exporter->setMetadata($metadata); |
| 221 | 221 | $exporter->export(); |
| 222 | 222 | |
| 223 | - $output->writeln(PHP_EOL . sprintf( |
|
| 223 | + $output->writeln(PHP_EOL.sprintf( |
|
| 224 | 224 | 'Converting Doctrine 1.X schema to "<info>%s</info>" mapping type in "<info>%s</info>"', $toType, $destPath |
| 225 | 225 | )); |
| 226 | 226 | } else { |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | /** |
| 34 | 34 | * @var string |
| 35 | 35 | */ |
| 36 | - protected $preSeparator = ''; |
|
| 36 | + protected $preSeparator = ''; |
|
| 37 | 37 | |
| 38 | 38 | /** |
| 39 | 39 | * @var string |
@@ -57,7 +57,7 @@ |
||
| 57 | 57 | /** |
| 58 | 58 | * Constructor. |
| 59 | 59 | * |
| 60 | - * @param Query|QueryBuilder $query A Doctrine ORM query or query builder. |
|
| 60 | + * @param Query $query A Doctrine ORM query or query builder. |
|
| 61 | 61 | * @param boolean $fetchJoinCollection Whether the query joins a collection (true by default). |
| 62 | 62 | */ |
| 63 | 63 | public function __construct($query, $fetchJoinCollection = true) |
@@ -38,7 +38,6 @@ |
||
| 38 | 38 | * Dequeue an exception for a specific method invocation |
| 39 | 39 | * |
| 40 | 40 | * @param string $method |
| 41 | - * @param mixed $default |
|
| 42 | 41 | * |
| 43 | 42 | * @return mixed |
| 44 | 43 | */ |
@@ -28,6 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | 30 | * {@inheritdoc} |
| 31 | + * @param \Doctrine\Tests\ORM\NotifyChangedEntity $entity |
|
| 31 | 32 | */ |
| 32 | 33 | public function getEntityChangeSet($entity) |
| 33 | 34 | { |
@@ -51,6 +51,9 @@ |
||
| 51 | 51 | */ |
| 52 | 52 | public $complexAction; |
| 53 | 53 | |
| 54 | + /** |
|
| 55 | + * @param string $token |
|
| 56 | + */ |
|
| 54 | 57 | public function __construct($token, Client $client = null) |
| 55 | 58 | { |
| 56 | 59 | $this->logins = new ArrayCollection(); |
@@ -19,6 +19,9 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | private $brand; |
| 21 | 21 | |
| 22 | + /** |
|
| 23 | + * @param string $brand |
|
| 24 | + */ |
|
| 22 | 25 | public function __construct($brand = null) { |
| 23 | 26 | $this->brand = $brand; |
| 24 | 27 | } |
@@ -79,6 +79,9 @@ discard block |
||
| 79 | 79 | return $this->hoursWorked; |
| 80 | 80 | } |
| 81 | 81 | |
| 82 | + /** |
|
| 83 | + * @param integer $hoursWorked |
|
| 84 | + */ |
|
| 82 | 85 | public function setHoursWorked($hoursWorked) |
| 83 | 86 | { |
| 84 | 87 | $this->hoursWorked = $hoursWorked; |
@@ -89,6 +92,9 @@ discard block |
||
| 89 | 92 | return $this->pricePerHour; |
| 90 | 93 | } |
| 91 | 94 | |
| 95 | + /** |
|
| 96 | + * @param integer $pricePerHour |
|
| 97 | + */ |
|
| 92 | 98 | public function setPricePerHour($pricePerHour) |
| 93 | 99 | { |
| 94 | 100 | $this->pricePerHour = $pricePerHour; |