@@ -27,16 +27,19 @@ discard block |
||
| 27 | 27 | |
| 28 | 28 | /** |
| 29 | 29 | * Begin a transaction. |
| 30 | + * @return void |
|
| 30 | 31 | */ |
| 31 | 32 | public function beginTransaction(); |
| 32 | 33 | |
| 33 | 34 | /** |
| 34 | 35 | * Commit a transaction. |
| 36 | + * @return void |
|
| 35 | 37 | */ |
| 36 | 38 | public function commit(); |
| 37 | 39 | |
| 38 | 40 | /** |
| 39 | 41 | * Rollback a transaction. |
| 42 | + * @return void |
|
| 40 | 43 | */ |
| 41 | 44 | public function rollBack(); |
| 42 | 45 | |
@@ -60,6 +63,7 @@ discard block |
||
| 60 | 63 | * Execute a query against the database. |
| 61 | 64 | * |
| 62 | 65 | * @param string $query |
| 66 | + * @return void |
|
| 63 | 67 | */ |
| 64 | 68 | public function exec($query); |
| 65 | 69 | |
@@ -68,7 +72,8 @@ discard block |
||
| 68 | 72 | * |
| 69 | 73 | * Statements are ducktyped, but need to work like PDOStatement. |
| 70 | 74 | * |
| 71 | - * @return object |
|
| 75 | + * @param string $query |
|
| 76 | + * @return \Doctrine\DBAL\Driver\Statement |
|
| 72 | 77 | */ |
| 73 | 78 | public function prepare($query); |
| 74 | 79 | |
@@ -138,8 +143,9 @@ discard block |
||
| 138 | 143 | * |
| 139 | 144 | * This is an optimization and works around the ezcDB implementation. |
| 140 | 145 | * |
| 141 | - * @param string $identifier |
|
| 142 | 146 | * |
| 147 | + * @param string $name |
|
| 148 | + * @param string $alias |
|
| 143 | 149 | * @return string |
| 144 | 150 | */ |
| 145 | 151 | public function alias($name, $alias); |
@@ -168,7 +174,7 @@ discard block |
||
| 168 | 174 | * @param string $table |
| 169 | 175 | * @param string $column |
| 170 | 176 | * |
| 171 | - * @return mixed |
|
| 177 | + * @return string |
|
| 172 | 178 | */ |
| 173 | 179 | public function getAutoIncrementValue($table, $column); |
| 174 | 180 | |
@@ -185,7 +191,7 @@ discard block |
||
| 185 | 191 | /** |
| 186 | 192 | * Returns underlying connection (e.g. Doctrine connection object). |
| 187 | 193 | * |
| 188 | - * @return mixed |
|
| 194 | + * @return \Doctrine\DBAL\Connection |
|
| 189 | 195 | */ |
| 190 | 196 | public function getConnection(); |
| 191 | 197 | } |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | /** |
| 74 | 74 | * Get language by id. |
| 75 | 75 | * |
| 76 | - * @param mixed $id |
|
| 76 | + * @param integer $id |
|
| 77 | 77 | * |
| 78 | 78 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException If language could not be found by $id |
| 79 | 79 | * |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | /** |
| 180 | 180 | * Delete a language. |
| 181 | 181 | * |
| 182 | - * @param mixed $id |
|
| 182 | + * @param integer $id |
|
| 183 | 183 | */ |
| 184 | 184 | public function delete($id) |
| 185 | 185 | { |
@@ -11,7 +11,6 @@ |
||
| 11 | 11 | use eZ\Publish\SPI\Persistence\Content\Location; |
| 12 | 12 | use eZ\Publish\SPI\Persistence\Content\Location\UpdateStruct; |
| 13 | 13 | use eZ\Publish\SPI\Persistence\Content\Location\CreateStruct; |
| 14 | -use Doctrine\DBAL\DBALException; |
|
| 15 | 14 | use PDOException; |
| 16 | 15 | |
| 17 | 16 | /** |
@@ -309,7 +309,7 @@ discard block |
||
| 309 | 309 | * @throws \eZ\Publish\API\Repository\Exceptions\NotFoundException |
| 310 | 310 | * @throws \eZ\Publish\API\Repository\Exceptions\ForbiddenException |
| 311 | 311 | * |
| 312 | - * @param mixed $locationId |
|
| 312 | + * @param integer $locationId |
|
| 313 | 313 | * @param string $path |
| 314 | 314 | * @param bool $forwarding |
| 315 | 315 | * @param string $languageCode |
@@ -466,7 +466,7 @@ discard block |
||
| 466 | 466 | * @param string $text |
| 467 | 467 | * @param string $textMD5 |
| 468 | 468 | * |
| 469 | - * @return mixed |
|
| 469 | + * @return integer |
|
| 470 | 470 | */ |
| 471 | 471 | protected function insertNopEntry($parentId, $text, $textMD5) |
| 472 | 472 | { |
@@ -284,7 +284,7 @@ discard block |
||
| 284 | 284 | /** |
| 285 | 285 | * Returns a Content Gateway mock. |
| 286 | 286 | * |
| 287 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Gateway |
|
| 287 | + * @return Gateway |
|
| 288 | 288 | */ |
| 289 | 289 | protected function getContentGatewayMock() |
| 290 | 290 | { |
@@ -298,7 +298,7 @@ discard block |
||
| 298 | 298 | /** |
| 299 | 299 | * Returns a Content StorageHandler mock. |
| 300 | 300 | * |
| 301 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\StorageHandler |
|
| 301 | + * @return StorageHandler |
|
| 302 | 302 | */ |
| 303 | 303 | protected function getContentStorageHandlerMock() |
| 304 | 304 | { |
@@ -312,7 +312,7 @@ discard block |
||
| 312 | 312 | /** |
| 313 | 313 | * Returns a Content mapper mock. |
| 314 | 314 | * |
| 315 | - * @return \PHPUnit\Framework\MockObject\MockObject|\eZ\Publish\Core\Persistence\Legacy\Content\Mapper |
|
| 315 | + * @return ContentMapper |
|
| 316 | 316 | */ |
| 317 | 317 | protected function getContentMapperMock() |
| 318 | 318 | { |
@@ -69,7 +69,7 @@ |
||
| 69 | 69 | } |
| 70 | 70 | |
| 71 | 71 | /** |
| 72 | - * @return \Doctrine\DBAL\Connection[]|\PHPUnit\Framework\MockObject\MockObject[]|\Traversable |
|
| 72 | + * @return \Generator |
|
| 73 | 73 | */ |
| 74 | 74 | public function getTestBuildSharedGatewayData(): Traversable |
| 75 | 75 | { |