The null coalescing operator introduced in PHP 7 makes particular ternary operators easier.
<?php
$a = isset($b) ? $b : false; // NullCoalescingOperator: Use the null coalecing operator instead of the ternary operator.
<?php
$a = $b ?? false; // OK!