@@ -131,6 +131,7 @@ discard block |
||
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | /** |
| 134 | + * @param string $semanticPath |
|
| 134 | 135 | * @return Request |
| 135 | 136 | */ |
| 136 | 137 | protected function createRequest($semanticPath, $host = 'localhost') |
@@ -142,7 +143,7 @@ discard block |
||
| 142 | 143 | } |
| 143 | 144 | |
| 144 | 145 | /** |
| 145 | - * @param $request |
|
| 146 | + * @param Request $request |
|
| 146 | 147 | * |
| 147 | 148 | * @return GetResponseEvent |
| 148 | 149 | */ |
@@ -166,7 +166,7 @@ |
||
| 166 | 166 | /** |
| 167 | 167 | * @param SPIBinaryFileCreateStruct $binaryFileCreateStruct |
| 168 | 168 | * |
| 169 | - * @return mixed |
|
| 169 | + * @return string |
|
| 170 | 170 | */ |
| 171 | 171 | protected function getNameTrunk(SPIBinaryFileCreateStruct $binaryFileCreateStruct) |
| 172 | 172 | { |
@@ -109,6 +109,9 @@ |
||
| 109 | 109 | $conn->exec('DELETE FROM ezcontentobject_link WHERE relation_type = 0'); |
| 110 | 110 | } |
| 111 | 111 | |
| 112 | + /** |
|
| 113 | + * @param integer $totalCount |
|
| 114 | + */ |
|
| 112 | 115 | protected function executeList(OutputInterface $output, $totalCount) |
| 113 | 116 | { |
| 114 | 117 | $table = new Table($output); |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | * @param \eZ\Publish\SPI\Persistence\Content\VersionInfo $versionInfo |
| 80 | 80 | * @param \eZ\Publish\SPI\Persistence\Content\Field $field |
| 81 | 81 | * |
| 82 | - * @return bool |
|
| 82 | + * @return boolean|null |
|
| 83 | 83 | */ |
| 84 | 84 | protected function updateFieldData(VersionInfo $versionInfo, Field $field) |
| 85 | 85 | { |
@@ -163,6 +163,7 @@ discard block |
||
| 163 | 163 | * If no data is found, null is returned. |
| 164 | 164 | * |
| 165 | 165 | * @param int $fieldId |
| 166 | + * @param integer $versionNo |
|
| 166 | 167 | * |
| 167 | 168 | * @return array|null |
| 168 | 169 | */ |
@@ -206,7 +206,7 @@ |
||
| 206 | 206 | } |
| 207 | 207 | |
| 208 | 208 | /** |
| 209 | - * @return array |
|
| 209 | + * @return string[] |
|
| 210 | 210 | */ |
| 211 | 211 | protected function getContext() |
| 212 | 212 | { |
@@ -155,7 +155,7 @@ |
||
| 155 | 155 | * |
| 156 | 156 | * @param mixed $fieldId |
| 157 | 157 | * |
| 158 | - * @return array |
|
| 158 | + * @return string |
|
| 159 | 159 | */ |
| 160 | 160 | protected function fetchUserId($fieldId) |
| 161 | 161 | { |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | class FloatValueValidatorTest extends TestCase |
| 20 | 20 | { |
| 21 | 21 | /** |
| 22 | - * @return float |
|
| 22 | + * @return integer |
|
| 23 | 23 | */ |
| 24 | 24 | protected function getMinFloatValue() |
| 25 | 25 | { |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | } |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | - * @return float |
|
| 30 | + * @return integer |
|
| 31 | 31 | */ |
| 32 | 32 | protected function getMaxFloatValue() |
| 33 | 33 | { |
@@ -268,6 +268,9 @@ discard block |
||
| 268 | 268 | $this->assertContainsEzRemoteInvalidLinkError($contentRemoteId, $errors); |
| 269 | 269 | } |
| 270 | 270 | |
| 271 | + /** |
|
| 272 | + * @param integer $locationId |
|
| 273 | + */ |
|
| 271 | 274 | private function assertContainsEzLocationInvalidLinkError($locationId, array $errors) |
| 272 | 275 | { |
| 273 | 276 | $format = 'Invalid link "ezlocation://%d": target location cannot be found'; |
@@ -275,6 +278,9 @@ discard block |
||
| 275 | 278 | $this->assertContains(sprintf($format, $locationId), $errors); |
| 276 | 279 | } |
| 277 | 280 | |
| 281 | + /** |
|
| 282 | + * @param integer $contentId |
|
| 283 | + */ |
|
| 278 | 284 | private function assertContainsEzContentInvalidLinkError($contentId, array $errors) |
| 279 | 285 | { |
| 280 | 286 | $format = 'Invalid link "ezcontent://%d": target content cannot be found'; |
@@ -282,6 +288,9 @@ discard block |
||
| 282 | 288 | $this->assertContains(sprintf($format, $contentId), $errors); |
| 283 | 289 | } |
| 284 | 290 | |
| 291 | + /** |
|
| 292 | + * @param string $contentId |
|
| 293 | + */ |
|
| 285 | 294 | private function assertContainsEzRemoteInvalidLinkError($contentId, array $errors) |
| 286 | 295 | { |
| 287 | 296 | $format = 'Invalid link "ezremote://%s": target content cannot be found'; |
@@ -303,6 +312,9 @@ discard block |
||
| 303 | 312 | ->getMock(); |
| 304 | 313 | } |
| 305 | 314 | |
| 315 | + /** |
|
| 316 | + * @param string $scheme |
|
| 317 | + */ |
|
| 306 | 318 | private function createInputDocument($scheme, $id) |
| 307 | 319 | { |
| 308 | 320 | $url = $scheme . '://' . $id; |
@@ -153,7 +153,7 @@ |
||
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | /** |
| 156 | - * @param $pathInfo |
|
| 156 | + * @param string $pathInfo |
|
| 157 | 157 | * |
| 158 | 158 | * @return Request |
| 159 | 159 | */ |