From 6dab7cfd171cdfa4eaef3fed2546cd33f80e4b01 Mon Sep 17 00:00:00 2001 From: Matthieu Date: Tue, 16 Jun 2026 15:36:42 +0200 Subject: [PATCH] style(transport) : conformite php-cs-fixer (lint CI projet entier) 2 nits cs preexistants masques par le cache local (.php-cs-fixer.cache) et revele par la CI (check projet entier, sans cache) : QualimatCarrierSearchProvider et CarrierFixtures. Sans incidence fonctionnelle. --- .../State/Provider/QualimatCarrierSearchProvider.php | 2 +- .../Transport/Infrastructure/DataFixtures/CarrierFixtures.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module/Transport/Infrastructure/ApiPlatform/State/Provider/QualimatCarrierSearchProvider.php b/src/Module/Transport/Infrastructure/ApiPlatform/State/Provider/QualimatCarrierSearchProvider.php index ed8697e..e569a98 100644 --- a/src/Module/Transport/Infrastructure/ApiPlatform/State/Provider/QualimatCarrierSearchProvider.php +++ b/src/Module/Transport/Infrastructure/ApiPlatform/State/Provider/QualimatCarrierSearchProvider.php @@ -48,7 +48,7 @@ final class QualimatCarrierSearchProvider implements ProviderInterface // Echappatoire ?pagination=false : collection complete (selects front). if (!$this->pagination->isEnabled($operation, $context)) { - /** @var list $carriers */ + // @var list $carriers return $qb->getQuery()->getResult(); } diff --git a/src/Module/Transport/Infrastructure/DataFixtures/CarrierFixtures.php b/src/Module/Transport/Infrastructure/DataFixtures/CarrierFixtures.php index bd4c27e..0cce512 100644 --- a/src/Module/Transport/Infrastructure/DataFixtures/CarrierFixtures.php +++ b/src/Module/Transport/Infrastructure/DataFixtures/CarrierFixtures.php @@ -308,7 +308,7 @@ class CarrierFixtures extends Fixture implements DependentFixtureInterface ]); } - /** @var QualimatCarrier $line */ + // @var QualimatCarrier $line return $repository->findOneBy(['siret' => self::QUALIMAT_DEMO_SIRET]); } }