Skip to content

Commit 3685010

Browse files
committed
style: latest cs-fixer
1 parent 5de077e commit 3685010

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/JsonApi/Serializer/ConstraintViolationListNormalizer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
use Symfony\Component\Validator\ConstraintViolationListInterface;
2323

2424
/**
25-
* Converts {@see \Symfony\Component\Validator\ConstraintViolationListInterface} to a JSON API error representation.
25+
* Converts {@see ConstraintViolationListInterface} to a JSON API error representation.
2626
*
2727
* @author Héctor Hurtarte <[email protected]>
2828
*/

src/Metadata/Resource/Factory/NotExposedOperationResourceMetadataCollectionFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function create(string $resourceClass): ResourceMetadataCollection
6060
foreach ($resourceMetadataCollection as $resource) {
6161
$operations = $resource->getOperations();
6262

63-
/** @var \ApiPlatform\Metadata\HttpOperation $operation */
63+
/** @var HttpOperation $operation */
6464
foreach ($operations as $operation) {
6565
// An item operation has been found, nothing to do anymore in this factory
6666
if ((HttpOperation::METHOD_GET === $operation->getMethod() && !$operation instanceof CollectionOperationInterface) || ($operation->getExtraProperties()['is_legacy_resource_metadata'] ?? false)) {

tests/Behat/DoctrineContext.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2168,7 +2168,7 @@ public function thereIsADummyWithSubEntity(string $strId, string $name): void
21682168
public function thereIsAGroupWithUuidAndNUsers(string $uuid, int $nbUsers): void
21692169
{
21702170
$group = new Group();
2171-
$group->setUuid(\Symfony\Component\Uid\Uuid::fromString($uuid));
2171+
$group->setUuid(SymfonyUuid::fromString($uuid));
21722172

21732173
$this->manager->persist($group);
21742174

0 commit comments

Comments
 (0)