Create New Item
×
Item Type
File
Folder
Item Name
×
Search file in folder and subfolders...
File Manager
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * Defines the logic used to apply a workday filter. */ class ShiftWorkdayMatcher { /** * All shifts that start on or after the specified workday */ public const START_AT = 'START_AT'; /** * All shifts that end on or before the specified workday */ public const END_AT = 'END_AT'; /** * All shifts that start between the start and end workdays (inclusive) */ public const INTERSECTION = 'INTERSECTION'; }