Skip to content

Instantly share code, notes, and snippets.

@mikemix
Created August 9, 2022 18:32
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 mikemix/027257503bf35d79a7d67146b7fed0c6 to your computer and use it in GitHub Desktop.
Save mikemix/027257503bf35d79a7d67146b7fed0c6 to your computer and use it in GitHub Desktop.
<?php
function mapOrderStatusToLabel(Order $order): string
{
switch ($order->getStatus()) {
case 'complete':
return 'Completed';
case 'pending':
case 'in_transport':
return 'In transport';
case 'new':
return 'New';
default:
return 'unknown';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment