Move Annotation form types to Core

This commit is contained in:
Yassine Guedidi 2023-12-25 19:23:32 +01:00
parent 23301b7eac
commit b9a1248c4b
4 changed files with 5 additions and 5 deletions

View file

@ -10,10 +10,10 @@ use Symfony\Component\HttpFoundation\JsonResponse;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
use Symfony\Component\Routing\Annotation\Route;
use Wallabag\AnnotationBundle\Form\EditAnnotationType;
use Wallabag\AnnotationBundle\Form\NewAnnotationType;
use Wallabag\CoreBundle\Entity\Annotation;
use Wallabag\CoreBundle\Entity\Entry;
use Wallabag\CoreBundle\Form\Type\EditAnnotationType;
use Wallabag\CoreBundle\Form\Type\NewAnnotationType;
use Wallabag\CoreBundle\Repository\AnnotationRepository;
use Wallabag\UserBundle\Entity\User;

View file

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

View file

@ -1,6 +1,6 @@
<?php
namespace Wallabag\AnnotationBundle\Form;
namespace Wallabag\CoreBundle\Form\Type;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\Extension\Core\Type\CollectionType;

View file

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