Passed
Push — master ( 2c1550...32625a )
by Luiz Kim
23:24 queued 21:04
created
src/Service/SignatureService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
         }
134 134
 
135 135
         $contractProviders = $contract->getPeoples()
136
-            ->filter(function ($contractPeople) {
136
+            ->filter(function($contractPeople) {
137 137
                 return $contractPeople->getPeopleType() == 'Beneficiary';
138 138
             });
139 139
         if ($contractProviders->isEmpty()) {
@@ -147,7 +147,7 @@  discard block
 block discarded – undo
147 147
         }
148 148
 
149 149
         $contractParticipants = $contract->getPeoples()
150
-            ->filter(function ($contractPeople) {
150
+            ->filter(function($contractPeople) {
151 151
                 return $contractPeople->getPeopleType() != 'Beneficiary';
152 152
             });
153 153
         if ($contractParticipants->isEmpty()) {
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
     protected function getContractContractorSignerName(Contract $contract): string
167 167
     {
168 168
         $contractPayers = $contract->getPeoples()
169
-            ->filter(function ($contractPeople) {
169
+            ->filter(function($contractPeople) {
170 170
                 return $contractPeople->getPeopleType() == 'Contractor';
171 171
             });
172 172
         if ($contractPayers->isEmpty()) {
Please login to merge, or discard this patch.