Passed
Pull Request — master (#1)
by
unknown
02:21
created
src/Controller/API/HookController.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,14 +4,10 @@
 block discarded – undo
4 4
 
5 5
 use App\Entity\Guild;
6 6
 use App\Entity\Setting;
7
-use App\Handler\ApiHandler;
8
-use App\Utils\AbstractCrawler;
9 7
 use App\Utils\CharacterCrawler;
10 8
 use App\Utils\GuildCrawler;
11 9
 use FOS\RestBundle\Controller\FOSRestController;
12 10
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
13
-use Nelmio\ApiDocBundle\Annotation\Model;
14
-use Swagger\Annotations as SWG;
15 11
 use Symfony\Component\HttpFoundation\JsonResponse;
16 12
 
17 13
 /**
Please login to merge, or discard this patch.
src/Handler/ApiHandler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Handler;
4 4
 
5
-use App\Entity\Product;
6 5
 use Doctrine\ORM\EntityManagerInterface;
7 6
 use Doctrine\ORM\QueryBuilder;
8 7
 use FOS\RestBundle\View\View;
Please login to merge, or discard this patch.
src/Handler/CharacterHandler.php 1 patch
Unused Use Statements   -8 removed lines patch added patch discarded remove patch
@@ -2,15 +2,7 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Handler;
4 4
 
5
-use App\Entity\Product;
6
-use Doctrine\ORM\EntityManagerInterface;
7 5
 use Doctrine\ORM\QueryBuilder;
8
-use FOS\RestBundle\View\View;
9
-use FOS\RestBundle\View\ViewHandlerInterface;
10
-use Pagerfanta\Pagerfanta;
11
-use Symfony\Component\HttpFoundation\Request;
12
-use Pagerfanta\Adapter\DoctrineORMAdapter;
13
-use Symfony\Component\HttpFoundation\RequestStack;
14 6
 
15 7
 /**
16 8
  * Class ApiHandler
Please login to merge, or discard this patch.
src/Utils/AbstractCrawler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace App\Utils;
4 4
 
5
-use App\Entity\Guild;
6 5
 use App\Entity\Setting;
7 6
 use Doctrine\ORM\EntityManagerInterface;
8 7
 use Symfony\Component\DomCrawler\Crawler;
Please login to merge, or discard this patch.
src/Utils/CharacterCrawler.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,9 +5,7 @@
 block discarded – undo
5 5
 use App\Entity\Character;
6 6
 use App\Entity\Guild;
7 7
 use App\Entity\Setting;
8
-use App\Entity\User;
9 8
 use App\Factory\CharacterFactory;
10
-use App\Factory\UserFactory;
11 9
 use Symfony\Component\DomCrawler\Crawler;
12 10
 
13 11
 /**
Please login to merge, or discard this patch.