# Feature Request <!-- First, thank you for making a request. That takes time and we appreciate that! --> ## Diff <!-- Use diff here in Markdown: https://stackoverflow.com/a/40883538/1348344 --> ```diff function run(bool $a) { - return $a ?: false; + return $a; } ```
Feature Request
Diff
function run(bool $a) { - return $a ?: false; + return $a; }