A ternary to check if greater than 2, if so make it whatever default you need. You may need a better default than one of those choices, just suggestion. Unless placed is the default you need.
Jun 17, 2022
5
Level 13
PHP enum default
is there a way to include a default value (f.e. for non defined values in the enum class):
<?php
namespace App\Enums;
enum ShipmentStatus: int
{
case PLACED = 0;
case AWAITING_SHIPMENT = 1;
case PROCESSED = 2;
}
For example when a value of 5 is received to throw a default case.
Please or to participate in this conversation.