Skip to content

Commit a8733bd

Browse files
committed
remove nullsafe operator
1 parent 4222e4e commit a8733bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/Http/Controllers/Account/AcceptanceController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public function store(Request $request, $id) : RedirectResponse
165165
'signature' => (($sig_filename && array_key_exists('1', $encoded_image))) ? $encoded_image[1] : null,
166166
'logo' => ($encoded_logo) ?? null,
167167
'date_settings' => $settings->date_display_format,
168-
'admin' => $admin?->present()?->fullName,
168+
'admin' => $admin?->present()->fullName,
169169
'qty' => $acceptance->qty ?? 1,
170170
];
171171

0 commit comments

Comments
 (0)