You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use more correct ?? operator instead of ?: where possible
The only reason this code uses ?: is that it was available much
earlier, since PHP 5.3, while ?? was only available since PHP 7.0.
?? is more specific and gets only activated on null, while ?: is
more relaxed and gets activated on any "falsy" value. While that
can be useful it's unspecific and fragile and just not needed in
these places.
Change-Id: Ibe24e9c67faab1fdea4feb0f09b8d62c973b23af
0 commit comments