Passed
Push — dev5 ( eeca7a...5844c4 )
by Ron
10:35
created
app/Domains/Customers/GetCustomerContacts.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     {
38 38
         $contact        = CustomerContacts::where('cont_id', $contID)->with('CustomerContactPhones')->first();
39 39
         $contactName    = explode(' ', $contact->name);
40
-        $contactDetails = collect( (object) [
40
+        $contactDetails = collect((object) [
41 41
             'firstName'   => $contactName[0],
42 42
             'lastName'    => isset($contactName[1]) ? $contactName[1] : '',
43 43
             'email'       => $contact->eamil,
Please login to merge, or discard this patch.