[#334] Correctifs (!32)
All checks were successful
Auto Tag Develop / tag (push) Successful in 5s

| Numéro du ticket | Titre du ticket |
|------------------|-----------------|
| 334 |   Correctifs  |

## 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é

Reviewed-on: #32
Co-authored-by: Matteo <matteo@yuno.malio.fr>
Co-committed-by: Matteo <matteo@yuno.malio.fr>
This commit was merged in pull request #32.
This commit is contained in:
2026-02-26 08:10:15 +00:00
committed by Autin
parent 9505201499
commit c0d05264df
25 changed files with 95 additions and 90 deletions

View File

@@ -80,7 +80,7 @@ class Shipment
#[ORM\Column(length: 255)]
#[Groups(['shipment:read', 'shipment:write'])]
private ?string $licencePlate = null;
private ?string $licensePlate = null;
#[ORM\Column(length: 20, unique: true, nullable: true)]
#[Groups(['shipment:read'])]
@@ -162,14 +162,14 @@ class Shipment
return $this->id;
}
public function getLicencePlate(): ?string
public function getLicensePlate(): ?string
{
return $this->licencePlate;
return $this->licensePlate;
}
public function setLicencePlate(?string $licencePlate): void
public function setLicensePlate(?string $licensePlate): void
{
$this->licencePlate = $licencePlate;
$this->licensePlate = $licensePlate;
}
public function getIdentificationNumber(): ?string