Completed
Pull Request — v2 (#6)
by Guillaume
01:35
created
src/Entity/AbstractEntityService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@
 block discarded – undo
24 24
      *
25 25
      * @param array $datas
26 26
      * @param array $validation_groups
27
-     * @param mixed $entity
27
+     * @param AbstractEntity $entity
28 28
      *
29 29
      * @return array
30 30
      */
Please login to merge, or discard this patch.
src/Extensions/AutoIncrementID.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace ETNA\Doctrine\Extensions;
4 4
 
5
-use Doctrine\ORM\Mapping\Id;
6
-use Doctrine\ORM\Mapping\GeneratedValue;
7 5
 use Doctrine\ORM\Mapping\Column;
6
+use Doctrine\ORM\Mapping\GeneratedValue;
7
+use Doctrine\ORM\Mapping\Id;
8 8
 
9 9
 /**
10 10
  * Le trait qui ajoute à une entité un ID tout ce qu'il y'a de plus classique
Please login to merge, or discard this patch.
src/Extensions/UnsignedAutoIncrementID.php 1 patch
Unused Use Statements   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -2,9 +2,9 @@
 block discarded – undo
2 2
 
3 3
 namespace ETNA\Doctrine\Extensions;
4 4
 
5
-use Doctrine\ORM\Mapping\Id;
6
-use Doctrine\ORM\Mapping\GeneratedValue;
7 5
 use Doctrine\ORM\Mapping\Column;
6
+use Doctrine\ORM\Mapping\GeneratedValue;
7
+use Doctrine\ORM\Mapping\Id;
8 8
 
9 9
 /**
10 10
  * Le trait qui ajoute à une entité un ID tout ce qu'il y'a de plus classique, sauf que celui la est unsigned
Please login to merge, or discard this patch.