Psalm v3.14.1 Release Notes

Release Date: 2020-08-17 // over 3 years ago
  • 🛠 Fixes a crash with this code:

    /**
      * @param array<int, int> $arr
     */
     function foo(array $arr) : void {
        for ($i = 20; $arr[$i] === 5 && $i > 0; $i--) {}
    }