for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
// For compatibility with PHP < 7.3
if (!function_exists('array_key_first')) {
function array_key_first(array $arr) {
foreach($arr as $key => $unused) {
return $key;
}
return NULL;