Skip to content

Commit 7c6fbd2

Browse files
committed
fix: remove unnecessary nullalbe chec
1 parent 8a4267d commit 7c6fbd2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Uploadcare.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ private static function createOrUpdateMediaRecord(array $file): Model
341341

342342
$tenantUlid = null;
343343

344-
$tenantUlid = Filament::getTenant()?->ulid ?? null;
344+
$tenantUlid = Filament::getTenant()->ulid ?? null;
345345

346346
return $mediaModel::updateOrCreate([
347347
'site_ulid' => $tenantUlid,

0 commit comments

Comments
 (0)