NullArrayAccess
Array access is performed on a value that is possibly null.
Example
Section titled “Example”<?phpfunction getList(): ?array { return null; }
echo getList()[0]; // may be nullHow to fix
Section titled “How to fix”Guard with a null check before accessing array elements.