Passed
Pull Request — master (#1329)
by Tarmo
07:36
created
src/Entity/Role.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,5 +1,5 @@  discard block
 block discarded – undo
1 1
 <?php
2
-declare(strict_types = 1);
2
+declare(strict_types=1);
3 3
 /**
4 4
  * /src/Entity/Role.php
5 5
  *
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
     #[Groups([
56 56
         'Role.userGroups',
57 57
     ])]
58
-    private Collection | ArrayCollection $userGroups;
58
+    private Collection|ArrayCollection $userGroups;
59 59
 
60 60
     public function __construct(
61 61
         #[ORM\Id]
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     /**
96 96
      * @return Collection<int, UserGroup>|ArrayCollection<int, UserGroup>
97 97
      */
98
-    public function getUserGroups(): Collection | ArrayCollection
98
+    public function getUserGroups(): Collection|ArrayCollection
99 99
     {
100 100
         return $this->userGroups;
101 101
     }
Please login to merge, or discard this patch.