Psalm
Get started
Documentation
Paid support
Plugins
Blog
GitHub
<?php // These are detected as problematic: $bar = 'A'; echo isset($bar) ? 'A' : 'B'; echo $bar ?? 'C'; // These are not: function foo(): string { return 'A'; } echo isset(foo()) ? 'A' : 'B';
Snippet created on June 22 2023 at 13:42 UTC
Settings
Get link