Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
meupet.app
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: FulfillmentType.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * The type of fulfillment. */ class FulfillmentType { /** * A recipient to pick up the fulfillment from a physical [location]($m/Location). */ public const PICKUP = 'PICKUP'; /** * A shipping carrier to ship the fulfillment. */ public const SHIPMENT = 'SHIPMENT'; /** * A courier to deliver the fulfillment. */ public const DELIVERY = 'DELIVERY'; }
Save
Cancel