Completed
Push — master ( 4b984d...a3b5f9 )
by Laurent
03:33
created
src/AppBundle/Entity/Inventory.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Entity;
16 16
 
17
-use Doctrine\ORM\Mapping as ORM;
18
-use Doctrine\Common\Collections\ArrayCollection;
19 17
 use AppBundle\Entity\InventoryArticles;
18
+use Doctrine\Common\Collections\ArrayCollection;
19
+use Doctrine\ORM\Mapping as ORM;
20 20
 
21 21
 /**
22 22
  * Inventory
Please login to merge, or discard this patch.
src/AppBundle/Entity/InventoryArticlesRepository.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace AppBundle\Entity;
4 4
 
5
-use Doctrine\ORM\EntityRepository;
6 5
 use AppBundle\Entity\Inventory;
6
+use Doctrine\ORM\EntityRepository;
7 7
 
8 8
 /**
9 9
  * InventoryArticlesRepository
Please login to merge, or discard this patch.
src/AppBundle/Entity/Supplier.php 1 patch
Unused Use Statements   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
  */
16 16
 namespace AppBundle\Entity;
17 17
 
18
+use AppBundle\Entity\Contact;
19
+use AppBundle\Entity\FamilyLog;
18 20
 use Doctrine\ORM\Mapping as ORM;
19
-use Symfony\Component\Validator\Constraints as Assert;
20 21
 use Gedmo\Mapping\Annotation as Gedmo;
21 22
 use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
22
-use AppBundle\Entity\Contact;
23
-use AppBundle\Entity\FamilyLog;
23
+use Symfony\Component\Validator\Constraints as Assert;
24 24
 
25 25
 /**
26 26
  * Supplier Entité Supplier.
Please login to merge, or discard this patch.
src/AppBundle/Entity/User.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,9 +14,9 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Entity;
16 16
  
17
-use FOS\UserBundle\Model\User as BaseUser;
18
-use Doctrine\ORM\Mapping as ORM;
19 17
 use Doctrine\Common\Collections\ArrayCollection;
18
+use Doctrine\ORM\Mapping as ORM;
19
+use FOS\UserBundle\Model\User as BaseUser;
20 20
 use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
21 21
  
22 22
 /**
Please login to merge, or discard this patch.
src/AppBundle/Controller/Install/Install4Controller.php 1 patch
Unused Use Statements   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -14,18 +14,18 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Controller\Install;
16 16
 
17
+use AppBundle\Entity\FamilyLog;
18
+use AppBundle\Entity\Tva;
19
+use AppBundle\Entity\UnitStorage;
20
+use AppBundle\Entity\ZoneStorage;
21
+use AppBundle\Form\Type\FamilyLogType;
22
+use AppBundle\Form\Type\TvaType;
23
+use AppBundle\Form\Type\UnitStorageType;
24
+use AppBundle\Form\Type\ZoneStorageType;
17 25
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
18 26
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
19 27
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
20 28
 use Symfony\Component\HttpFoundation\Request;
21
-use AppBundle\Entity\FamilyLog;
22
-use AppBundle\Form\Type\FamilyLogType;
23
-use AppBundle\Entity\ZoneStorage;
24
-use AppBundle\Form\Type\ZoneStorageType;
25
-use AppBundle\Entity\UnitStorage;
26
-use AppBundle\Form\Type\UnitStorageType;
27
-use AppBundle\Entity\Tva;
28
-use AppBundle\Form\Type\TvaType;
29 29
 
30 30
 /**
31 31
  * class InstallController
Please login to merge, or discard this patch.
src/AppBundle/Controller/Install/InstallController.php 1 patch
Unused Use Statements   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -14,21 +14,21 @@
 block discarded – undo
14 14
  */
15 15
 namespace AppBundle\Controller\Install;
16 16
 
17
+use AppBundle\Entity\Article;
18
+use AppBundle\Entity\Company;
19
+use AppBundle\Entity\Settings;
20
+use AppBundle\Entity\Supplier;
21
+use AppBundle\Entity\User;
22
+use AppBundle\Form\Type\ArticleType;
23
+use AppBundle\Form\Type\CompanyType;
24
+use AppBundle\Form\Type\SettingsType;
25
+use AppBundle\Form\Type\SupplierType;
26
+use AppBundle\Form\Type\UserType;
17 27
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Method;
18 28
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
19 29
 use Sensio\Bundle\FrameworkExtraBundle\Configuration\Template;
20 30
 use Symfony\Bundle\FrameworkBundle\Controller\Controller;
21 31
 use Symfony\Component\HttpFoundation\Request;
22
-use AppBundle\Entity\User;
23
-use AppBundle\Form\Type\UserType;
24
-use AppBundle\Entity\Company;
25
-use AppBundle\Form\Type\CompanyType;
26
-use AppBundle\Entity\Settings;
27
-use AppBundle\Form\Type\SettingsType;
28
-use AppBundle\Entity\Supplier;
29
-use AppBundle\Form\Type\SupplierType;
30
-use AppBundle\Entity\Article;
31
-use AppBundle\Form\Type\ArticleType;
32 32
 
33 33
 /**
34 34
  * class InstallController
Please login to merge, or discard this patch.