chore: flatten namespace

This commit is contained in:
Björn Fromme
2026-04-12 17:54:24 +02:00
parent 98dd685679
commit fcfd366dec
6 changed files with 10 additions and 9 deletions
@@ -15,8 +15,8 @@ use App\Repository\NewsletterOptInConfirmationRepository;
use App\Security\Crypt;
use App\Service\BookingEditDataLoaderService;
use App\Service\ProfileCompletenessChecker;
use App\Service\Newsletter\MailjetNewsletterService;
use App\Service\Newsletter\NewsletterDoubleOptInService;
use App\Service\MailjetNewsletterService;
use App\Service\NewsletterDoubleOptInService;
use Doctrine\ORM\EntityManagerInterface;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
@@ -18,8 +18,8 @@ use App\Service\BookingCreateContextFactory;
use App\Service\BookingPriceCalculatorService;
use App\Service\BookingService;
use App\Service\BookingSessionService;
use App\Service\Newsletter\MailjetNewsletterService;
use App\Service\Newsletter\NewsletterDoubleOptInService;
use App\Service\MailjetNewsletterService;
use App\Service\NewsletterDoubleOptInService;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\Form\FormInterface;
@@ -5,8 +5,8 @@ declare(strict_types=1);
namespace App\Controller\Newsletter;
use App\Exception\NewsletterProviderException;
use App\Service\Newsletter\NewsletterConfirmationResult;
use App\Service\Newsletter\NewsletterDoubleOptInService;
use App\Model\NewsletterConfirmationResult;
use App\Service\NewsletterDoubleOptInService;
use Psr\Log\LoggerInterface;
use Symfony\Bundle\FrameworkBundle\Controller\AbstractController;
use Symfony\Component\HttpFoundation\Response;
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Newsletter;
namespace App\Model;
class NewsletterConfirmationResult
{
@@ -2,7 +2,7 @@
declare(strict_types=1);
namespace App\Service\Newsletter;
namespace App\Service;
use App\Exception\NewsletterProviderException;
use Psr\Log\LoggerInterface;
@@ -2,11 +2,12 @@
declare(strict_types=1);
namespace App\Service\Newsletter;
namespace App\Service;
use App\Email\Mailer;
use App\Exception\NewsletterProviderException;
use App\Entity\NewsletterOptInConfirmation;
use App\Model\NewsletterConfirmationResult;
use App\Repository\NewsletterOptInConfirmationRepository;
use Doctrine\ORM\EntityManagerInterface;
use Psr\Log\LoggerInterface;