Shift with red gradient lettering
Loading navigation...

optional to nullsafe

Laravel
PHP

Convert calls to Laravel's optional helper within your application to use the nullsafe operator (?) newly available starting in PHP 8.0. Any calls passing a second callback argument will not be converted.

Before

optional($user->address)->street;

After

$user->address?->street;

← Back to the Workbench Tasks