php-plus / engine

✨ The Plus source code.
https://php-plus.com
91 stars 3 forks source link

null safe operator #4

Open olivernybroe opened 5 years ago

olivernybroe commented 5 years ago

So basically add the null safe operator in. It will allow us to chain calls without having to worry about the method not returning the desired result.

function($user) {
    $user?->getAddress()?->getZipCode();
}