Completed
Push — master ( 89f754...0e5042 )
by Michael
03:54
created
src/AppBundle/Entity/Poll.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,10 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace AppBundle\Entity;
4 4
 
5
-use Doctrine\ORM\Mapping as ORM;
6 5
 use AppBundle\Entity\User;
7 6
 use AppBundle\Entity\Vote;
8 7
 use Doctrine\Common\Collections\ArrayCollection;
8
+use Doctrine\ORM\Mapping as ORM;
9 9
 
10 10
 /**
11 11
  * Poll
Please login to merge, or discard this patch.
src/AppBundle/Entity/Vote.php 1 patch
Unused Use Statements   +3 added lines, -4 removed lines patch added patch discarded remove patch
@@ -2,11 +2,10 @@
 block discarded – undo
2 2
 
3 3
 namespace AppBundle\Entity;
4 4
 
5
-use Doctrine\ORM\Mapping as ORM;
6
-use AppBundle\Entity\User;
7
-use AppBundle\Entity\Poll;
8 5
 use AppBundle\Entity\Choice;
9
-use Doctrine\Common\Collections\ArrayCollection;
6
+use AppBundle\Entity\Poll;
7
+use AppBundle\Entity\User;
8
+use Doctrine\ORM\Mapping as ORM;
10 9
 
11 10
 /**
12 11
  * Vote
Please login to merge, or discard this patch.