Move Api form type to Core

This commit is contained in:
Yassine Guedidi 2023-12-31 09:38:27 +01:00
parent 1bddf4ee19
commit 85ba249ed1
2 changed files with 2 additions and 2 deletions

View file

@ -8,9 +8,9 @@ use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Symfony\Component\Routing\Annotation\Route;
use Symfony\Contracts\Translation\TranslatorInterface;
use Wallabag\ApiBundle\Form\Type\ClientType;
use Wallabag\CoreBundle\Controller\AbstractController;
use Wallabag\CoreBundle\Entity\Api\Client;
use Wallabag\CoreBundle\Form\Type\Api\ClientType;
use Wallabag\CoreBundle\Repository\Api\ClientRepository;
class DeveloperController extends AbstractController

View file

@ -1,6 +1,6 @@
<?php
namespace Wallabag\ApiBundle\Form\Type;
namespace Wallabag\CoreBundle\Form\Type\Api;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\CallbackTransformer;