Completed
Push — v2 ( 32d34c...e0e9a9 )
by Jean
14s queued 13s
created
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.
src/Entity/AbstractEntityService.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
      * @see https://symfony.com/doc/current/validation/groups.html
29 29
      *
30 30
      * @param array          $datas
31
-     * @param array          $validation_groups
31
+     * @param string[]          $validation_groups
32 32
      * @param AbstractEntity $entity
33 33
      *
34 34
      * @return array
Please login to merge, or discard this patch.
src/Extensions/CreatedAt.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -14,6 +14,7 @@
 block discarded – undo
14 14
 
15 15
     /**
16 16
      * Getter
17
+     * @param string $format
17 18
      */
18 19
     public function getCreatedAt($format = null)
19 20
     {
Please login to merge, or discard this patch.