PHP 8 Nullsafe Operator
Pretty soon PHP8 will be mandatory all over the web. Today we’ll look at the Nullsafe operator to reduce a few lines of code. Instead of null check conditions, you can now use a chain of calls with the new nullsafe operator. When the evaluation of one element in the chain fails, the execution of […]