Code Smell 212 - Elvis Operator
Your code is not safer using this operator
TL;DR: Don't propagate nulls.
Problems
NULL propagation
Harder to read code
Hacky code
Solutions
Remove the nulls.
If you can't remove it, deal explicitly with them.
Context
The Elvis operator is...
maximilianocontieri.com2 min read