mir-analyzer 0.5.0

Analysis engine for the mir PHP static analyzer
Documentation
1
2
3
4
5
6
7
8
===source===
<?php
function test(bool $flag): void {
    $x = $flag ? [1, 2, 3] : null;
    echo $x[0];
}
===expect===
PossiblyNullArrayAccess: $x[0]