diff --git a/src/Wallabag/CoreBundle/Controller/Api/DeveloperController.php b/src/Wallabag/CoreBundle/Controller/Api/DeveloperController.php index e0091f21f..34c162ea4 100644 --- a/src/Wallabag/CoreBundle/Controller/Api/DeveloperController.php +++ b/src/Wallabag/CoreBundle/Controller/Api/DeveloperController.php @@ -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 diff --git a/src/Wallabag/ApiBundle/Form/Type/ClientType.php b/src/Wallabag/CoreBundle/Form/Type/Api/ClientType.php similarity index 97% rename from src/Wallabag/ApiBundle/Form/Type/ClientType.php rename to src/Wallabag/CoreBundle/Form/Type/Api/ClientType.php index b45127ae9..a004c6af0 100644 --- a/src/Wallabag/ApiBundle/Form/Type/ClientType.php +++ b/src/Wallabag/CoreBundle/Form/Type/Api/ClientType.php @@ -1,6 +1,6 @@