PossiblyUndefinedStringArrayOffset

February 12, 2025 ยท View on GitHub

Emitted when the config flag ensureArrayStringOffsetsExist is set to true and a string-keyed offset is not checked for existence

<?php

/**
 * @param array<string, string> $arr
 */
function foo(array $arr) : void {
    echo $arr["hello"];
}