Skip to content

Commit f112b30

Browse files
Merge branch '7.2' into 7.3
* 7.2: - - CS fixes
2 parents 547a10f + 6b8b400 commit f112b30

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

ArgumentResolver/EntityValueResolver.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public function resolve(Request $request, ArgumentMetadata $argument): array
7373
return [];
7474
}
7575

76-
throw new NearMissValueResolverException(sprintf('Cannot find mapping for "%s": declare one using either the #[MapEntity] attribute or mapped route parameters.', $options->class));
76+
throw new NearMissValueResolverException(\sprintf('Cannot find mapping for "%s": declare one using either the #[MapEntity] attribute or mapped route parameters.', $options->class));
7777
}
7878
try {
7979
$object = $manager->getRepository($options->class)->findOneBy($criteria);

Types/DatePointType.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,12 @@ final class DatePointType extends DateTimeImmutableType
2020
public const NAME = 'date_point';
2121

2222
/**
23-
* @param T $value
24-
*
25-
* @return (T is null ? null : DatePoint)
26-
*
27-
* @template T
28-
*/
23+
* @param T $value
24+
*
25+
* @return (T is null ? null : DatePoint)
26+
*
27+
* @template T
28+
*/
2929
public function convertToPHPValue(mixed $value, AbstractPlatform $platform): ?DatePoint
3030
{
3131
if (null === $value || $value instanceof DatePoint) {

0 commit comments

Comments
 (0)