```
✨ feat(revervation): [Ajoute la création de session de réservation et le flow] 🐛 fix(PurgeCommandTest): [Utilise addCommand au lieu de add pour les commandes] 📝 chore(deps): [Mise à jour des dépendances Composer et corrections] 🐛 fix(KeycloakAuthenticator): [Corrige le type nullable de l'exception start] ✨ feat(Customer): [Ajoute les sessions de commandes aux entités Customer] ♻️ refactor(AppLogger): [Refactorise l'AppLogger pour obtenir l'UserAgent] ✨ feat(FlowReserve): [Ajoute une action de validation du panier] ```
This commit is contained in:
@@ -26,7 +26,7 @@ class MaintenanceCommandTest extends TestCase
|
||||
{
|
||||
$command = new MaintenanceCommand($this->tempDir);
|
||||
$application = new Application();
|
||||
$application->add($command);
|
||||
$application->addCommand($command);
|
||||
$commandTester = new CommandTester($application->find('app:maintenance'));
|
||||
|
||||
$commandTester->execute(['status' => 'on']);
|
||||
@@ -43,7 +43,7 @@ class MaintenanceCommandTest extends TestCase
|
||||
|
||||
$command = new MaintenanceCommand($this->tempDir);
|
||||
$application = new Application();
|
||||
$application->add($command);
|
||||
$application->addCommand($command);
|
||||
$commandTester = new CommandTester($application->find('app:maintenance'));
|
||||
|
||||
$commandTester->execute(['status' => 'off']);
|
||||
|
||||
Reference in New Issue
Block a user