Test Setup Failed
Push — master ( 10eb12...0c385b )
by Angel Fernando Quiroz
213:59 queued 150:07
created
src/Chamilo/CoreBundle/Entity/Listener/SessionListener.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -8,7 +8,6 @@
 block discarded – undo
8 8
 use Chamilo\CoreBundle\Entity\Repository\SessionRepository;
9 9
 use Doctrine\ORM\Event\LifecycleEventArgs;
10 10
 use Chamilo\CoreBundle\Entity\Session;
11
-use Doctrine\ORM\Mapping as ORM;
12 11
 
13 12
 /**
14 13
  * Class SessionListener
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/Manager/CourseManager.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -3,13 +3,8 @@
 block discarded – undo
3 3
 
4 4
 namespace Chamilo\CoreBundle\Entity\Manager;
5 5
 
6
-use Chamilo\CoreBundle\Entity\Repository\CourseRepository;
7 6
 use Sonata\CoreBundle\Model\BaseEntityManager;
8 7
 use Chamilo\CoreBundle\Entity\Course;
9
-use Chamilo\UserBundle\Entity\User;
10
-use Sonata\DatagridBundle\Pager\Doctrine\pager;
11
-use Sonata\DatagridBundle\ProxyQuery\Doctrine\ProxyQuery;
12
-use Doctrine\Common\Collections\Criteria;
13 8
 
14 9
 /**
15 10
  * Class CourseManager
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/Manager/SessionManager.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,15 +3,11 @@
 block discarded – undo
3 3
 
4 4
 namespace Chamilo\CoreBundle\Entity\Manager;
5 5
 
6
-use Chamilo\CoreBundle\Entity\Repository\CourseRepository;
7 6
 use Chamilo\CoreBundle\Entity\Session;
8 7
 use Chamilo\CoreBundle\Entity\SessionRelUser;
9 8
 use Sonata\CoreBundle\Model\BaseEntityManager;
10 9
 use Chamilo\CoreBundle\Entity\Course;
11 10
 use Chamilo\UserBundle\Entity\User;
12
-use Sonata\DatagridBundle\Pager\Doctrine\pager;
13
-use Sonata\DatagridBundle\ProxyQuery\Doctrine\ProxyQuery;
14
-use Doctrine\Common\Collections\Criteria;
15 11
 
16 12
 /**
17 13
  * Class SessionManager
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/EventListener/LogoutSuccessHandler.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 use Symfony\Component\Routing\Generator\UrlGeneratorInterface;
10 10
 use Symfony\Component\Security\Core\Authorization\AuthorizationChecker;
11 11
 use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
12
-use Symfony\Component\Routing\Router;
13 12
 use Database;
14 13
 
15 14
 /**
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/EventListener/OnlineListener.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,6 @@
 block discarded – undo
3 3
 
4 4
 namespace Chamilo\CoreBundle\EventListener;
5 5
 
6
-use Symfony\Component\DependencyInjection\ContainerInterface;
7 6
 use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
8 7
 use Symfony\Component\HttpKernel\HttpKernel;
9 8
 use Symfony\Component\Security\Core\SecurityContext;
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Framework/PageController.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 
6 6
 use Pagerfanta\Adapter\FixedAdapter;
7 7
 use Pagerfanta\Pagerfanta;
8
-use Pagerfanta\View\TwitterBootstrapView;
9 8
 use SystemAnnouncementManager;
10 9
 use UserManager;
11 10
 use CourseManager;
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Framework/Template.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 namespace Chamilo\CoreBundle\Framework;
5 5
 
6 6
 use \ChamiloSession as Session;
7
-use Chamilo\CoreBundle\Framework\Application;
8 7
 use Symfony\Component\Security\Core\SecurityContext;
9 8
 use Symfony\Component\Translation\Translator;
10 9
 use Symfony\Component\Routing\Router;
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Menu/NavBuilder.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,6 @@
 block discarded – undo
7 7
 use Knp\Menu\FactoryInterface;
8 8
 use Knp\Menu\ItemInterface;
9 9
 use Symfony\Component\DependencyInjection\ContainerAware;
10
-use Symfony\Component\Routing\RouterInterface;
11 10
 
12 11
 /**
13 12
  * Class NavBuilder
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Migrations/Data/ORM/LoadPageData.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,15 +3,11 @@
 block discarded – undo
3 3
 
4 4
 namespace Chamilo\CoreBundle\Migrations\Data\ORM;
5 5
 
6
-use Doctrine\Common\DataFixtures\FixtureInterface;
7 6
 use Doctrine\Common\DataFixtures\OrderedFixtureInterface;
8 7
 use Doctrine\Common\DataFixtures\AbstractFixture;
9 8
 use Doctrine\Common\Persistence\ObjectManager;
10
-
11 9
 use Sonata\PageBundle\Model\SiteInterface;
12 10
 use Sonata\PageBundle\Model\PageInterface;
13
-
14
-use Symfony\Cmf\Bundle\RoutingBundle\Tests\Unit\Doctrine\Orm\ContentRepositoryTest;
15 11
 use Symfony\Component\Console\Output\ConsoleOutput;
16 12
 use Symfony\Component\DependencyInjection\ContainerAwareInterface;
17 13
 use Symfony\Component\DependencyInjection\ContainerInterface;
Please login to merge, or discard this patch.