Some checks failed
Auto Tag Develop / tag (push) Has been cancelled
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #271 | Créer une nouvelle expédition (étape 1) | ## Description de la PR ## Modification du .env ## Check list [x ] Pas de régression TU/TI/TF rédigée [x ] TU/TI/TF OK [x ] CHANGELOG modifié Co-authored-by: kevin <kevin@yuno.malio.fr> Reviewed-on: #12 Reviewed-by: Autin <tristan@yuno.malio.fr> Co-authored-by: Matteo <matteo@yuno.malio.fr> Co-committed-by: Matteo <matteo@yuno.malio.fr>
31 lines
846 B
PHP
31 lines
846 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\State;
|
|
|
|
use ApiPlatform\Metadata\Operation;
|
|
use ApiPlatform\State\ProviderInterface;
|
|
use App\Dto\PontBasculeReading;
|
|
use App\Exception\PontBasculeException;
|
|
use App\Service\PontBasculeService;
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
|
|
|
final readonly class ShipmentWeighingProvider implements ProviderInterface
|
|
{
|
|
public function __construct(
|
|
private PontBasculeService $pontBasculeService,
|
|
) {}
|
|
|
|
public function provide(Operation $operation, array $uriVariables = [], array $context = []): ?PontBasculeReading
|
|
{
|
|
try {
|
|
$result = $this->pontBasculeService->fetch();
|
|
} catch (PontBasculeException $exception) {
|
|
throw new HttpException(500, $exception->getMessage(), $exception);
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|