@@ -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 | { |
@@ -60,7 +60,7 @@ |
||
| 60 | 60 | * NOT take care for test case wide caching of the field type, just return |
| 61 | 61 | * a new instance from this method! |
| 62 | 62 | * |
| 63 | - * @return FieldType |
|
| 63 | + * @return PageType |
|
| 64 | 64 | */ |
| 65 | 65 | protected function createFieldTypeUnderTest() |
| 66 | 66 | { |
@@ -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; |
@@ -15,6 +15,9 @@ discard block |
||
| 15 | 15 | */ |
| 16 | 16 | abstract class BaseURLServiceTest extends BaseTest |
| 17 | 17 | { |
| 18 | + /** |
|
| 19 | + * @param integer $exectedTotalCount |
|
| 20 | + */ |
|
| 18 | 21 | protected function doTestFindUrls(URLQuery $query, array $expectedUrls, $exectedTotalCount = null, $ignoreOrder = true) |
| 19 | 22 | { |
| 20 | 23 | $repository = $this->getRepository(); |
@@ -32,6 +35,9 @@ discard block |
||
| 32 | 35 | $this->assertSearchResultItems($searchResult, $expectedUrls, $ignoreOrder); |
| 33 | 36 | } |
| 34 | 37 | |
| 38 | + /** |
|
| 39 | + * @param boolean $ignoreOrder |
|
| 40 | + */ |
|
| 35 | 41 | protected function assertSearchResultItems(SearchResult $searchResult, array $expectedUrls, $ignoreOrder) |
| 36 | 42 | { |
| 37 | 43 | $this->assertCount(count($expectedUrls), $searchResult->items); |
@@ -132,7 +132,6 @@ |
||
| 132 | 132 | } |
| 133 | 133 | |
| 134 | 134 | /** |
| 135 | - * @param bool $csrfEnabled |
|
| 136 | 135 | * |
| 137 | 136 | * @return CsrfListener |
| 138 | 137 | */ |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | /** |
| 67 | 67 | * Sets the complete list of view providers. |
| 68 | 68 | * |
| 69 | - * @param array $viewProviders |
|
| 69 | + * @param \PHPUnit\Framework\MockObject\MockObject $viewProviders |
|
| 70 | 70 | */ |
| 71 | 71 | public function setViewProviders(array $viewProviders) |
| 72 | 72 | { |
@@ -86,7 +86,7 @@ |
||
| 86 | 86 | /** |
| 87 | 87 | * @dataProvider indexingProvider |
| 88 | 88 | * |
| 89 | - * @param array|null $value |
|
| 89 | + * @param array|null $values |
|
| 90 | 90 | * @param \Psr\Log\LoggerInterface|\PHPUnit\Framework\MockObject\MockObject|null $logger |
| 91 | 91 | */ |
| 92 | 92 | public function testIndexing(array $values = null, $logger = null) |