Skip to content

Instantly share code, notes, and snippets.

@vudaltsov
Last active February 22, 2022 14:07
Show Gist options
  • Save vudaltsov/f100dab5a0067092653350b0af99025b to your computer and use it in GitHub Desktop.
Save vudaltsov/f100dab5a0067092653350b0af99025b to your computer and use it in GitHub Desktop.
<?php
/**
* @psalm-pure
* @template T
* @template TArray of array<T>
* @param TArray $values
* @return (TArray is non-empty-array<T> ? T : ?T)
*/
function array_value_first(array $values): mixed
{
$key = array_key_first($values);
if ($key === null) {
return null;
}
return $values[$key];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment