HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/brameda/brameda.nl/app/Komma/Shop/Shipments/ShipmentStatus.php
<?php


namespace App\Komma\Shop\Shipments;


use App\Komma\Base\Enum;

class ShipmentStatus extends Enum
{
    const NEW                       = 'new';                   //A freshly created shipment
    const READY_TO_SHIP             = 'ready_to_ship';         //Ready to ship
    const CARRIER_NOTIFIED          = 'carrier_notified';      //The carrier is notified that they are going to receive this shipment from the shipper
    const IN_TRANSIT                = 'in_transit';            //The carrier picked up the package from the shipper. The package is in the internal logistical chain at the carrier.
    const OUT_FOR_DELIVERY          = 'out_for_delivery';      //The carrier is about to deliver the shipment, or it is ready to get picked up.
    const FAILED_ATTEMPT            = 'failed_attempt';        //Carrier attempted to deliver but failed, and usually leaves a notice and will try to delivery again.
    const EXCEPTION                 = 'exception';             //Custom hold, undelivered, returned shipment to sender or any shipping exceptions.
    const DELIVERED                 = 'delivered';             //Delivered
}