Skip to content

Commit 03e5424

Browse files
committed
Fix CS
1 parent 47f52f5 commit 03e5424

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Annotation/ApiProperty.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ final class ApiProperty
7777
public $identifier;
7878

7979
/**
80-
* @var mixed
80+
* @var string|int|float|bool|array|null
8181
*/
8282
public $default;
8383

8484
/**
85-
* @var mixed
85+
* @var string|int|float|bool|array|null
8686
*/
8787
public $example;
8888

src/Filter/Validator/ValidatorInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
interface ValidatorInterface
1717
{
1818
/**
19-
* @var string the parameter name to validate
20-
* @var array<string, mixed> $filterDescription the filter descriptions as returned by `ApiPlatform\Core\Api\FilterInterface::getDescription()`
21-
* @var array<string, mixed> $queryParameters the list of query parameter
19+
* @param string $name the parameter name to validate
20+
* @param array<string, mixed> $filterDescription the filter descriptions as returned by `ApiPlatform\Core\Api\FilterInterface::getDescription()`
21+
* @param array<string, mixed> $queryParameters the list of query parameter
2222
*/
2323
public function validate(string $name, array $filterDescription, array $queryParameters): array;
2424
}

0 commit comments

Comments
 (0)