Completed
Pull Request — master (#78)
by
unknown
02:02
created
Form/EditBaseUserType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
                     'class' => 'select2',
63 63
                 ],
64 64
                 'class' => UserRole::class,
65
-                'choice_label' => function (UserRole $userRole) {
65
+                'choice_label' => function(UserRole $userRole) {
66 66
                     return $this->translator->trans($userRole);
67 67
                 },
68 68
                 'required' => false,
Please login to merge, or discard this patch.
DataTransferObject/BaseUserDataTransferObject.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SumoCoders\FrameworkMultiUserBundle\DataTransferObject;
4 4
 
5
-use Doctrine\Common\Collections\Collection;
6 5
 use SumoCoders\FrameworkMultiUserBundle\DataTransferObject\Interfaces\UserDataTransferObject;
7 6
 use SumoCoders\FrameworkMultiUserBundle\User\Interfaces\User;
8 7
 use SumoCoders\FrameworkMultiUserBundle\Entity\BaseUser;
Please login to merge, or discard this patch.
Entity/BaseUser.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace SumoCoders\FrameworkMultiUserBundle\Entity;
4 4
 
5
-use Doctrine\Common\Collections\ArrayCollection;
6 5
 use Doctrine\Common\Collections\Collection;
7 6
 use Doctrine\ORM\Mapping as ORM;
8 7
 use Serializable;
Please login to merge, or discard this patch.
Form/AddBaseUserType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@
 block discarded – undo
62 62
                     'class' => 'select2',
63 63
                 ],
64 64
                 'class' => UserRole::class,
65
-                'choice_label' => function (UserRole $userRole) {
65
+                'choice_label' => function(UserRole $userRole) {
66 66
                     return $this->translator->trans($userRole);
67 67
                 },
68 68
                 'required' => false,
Please login to merge, or discard this patch.