Passed
Push — devel-3.0 ( c503ba...513ab0 )
by Rubén
03:26
created
lib/SP/Services/UserGroup/UserGroupService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
      */
127 127
     public function create($itemData)
128 128
     {
129
-        return $this->transactionAware(function () use ($itemData) {
129
+        return $this->transactionAware(function() use ($itemData) {
130 130
             $id = $this->userGroupRepository->create($itemData);
131 131
 
132 132
             $users = $itemData->getUsers();
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      */
147 147
     public function update($itemData)
148 148
     {
149
-        $this->transactionAware(function () use ($itemData) {
149
+        $this->transactionAware(function() use ($itemData) {
150 150
             $this->userGroupRepository->update($itemData);
151 151
 
152 152
             $users = $itemData->getUsers();
Please login to merge, or discard this patch.