This repository demonstrates a common yet subtle bug in PHP: accessing undefined array keys. PHP's flexible nature can mask these issues, leading to unexpected behavior and hard-to-debug problems.
isset/array_key_exists check is missing, so php warning is triggered. my suggestion is to add array_key_exists check to avoid reading unexisting keys from unexisting array: ...