Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
www
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
/
Editing: ShiftFilterStatus.php
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Specifies the `status` of `Shift` records to be returned. */ class ShiftFilterStatus { /** * Shifts that have been started and not ended. */ public const OPEN = 'OPEN'; /** * Shifts that have been started and ended. */ public const CLOSED = 'CLOSED'; }
Save
Cancel