add success email #14

Merged
csimonis merged 12 commits from feature/success-email into main 2025-02-13 20:14:35 +00:00
Showing only changes of commit 34d5145df4 - Show all commits

View File

@ -1,5 +1,4 @@
<?php <?php
declare(strict_types=1);
namespace App\Twig; namespace App\Twig;
@ -15,7 +14,8 @@ class Ticket extends AbstractExtension
{ {
return [ return [
new TwigFilter('food', $this->getFoodName(...)), new TwigFilter('food', $this->getFoodName(...)),
new TwigFilter('ticket', $this->getTicket(...)) new TwigFilter('ticket', $this->getTicket(...)),
]; ];
} }