Skip to content

Instantly share code, notes, and snippets.

@colynb
Last active April 4, 2021 15:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colynb/fa062344b3cc6749b75e3dd6d579cad9 to your computer and use it in GitHub Desktop.
Save colynb/fa062344b3cc6749b75e3dd6d579cad9 to your computer and use it in GitHub Desktop.
test
$name = 'dog';
$value = match ($name) {
'dog' => 1,
'cat' => 2,
'horse' => 3,
default => throw new \Exception,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment