Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
forbidals
/
wp-content
/
plugins
/
wpforms-lite
/
vendor_prefixed
/
square
/
square
/
src
/
Models
:
Weekday.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php declare (strict_types=1); namespace WPForms\Vendor\Square\Models; /** * The days of the week. */ class Weekday { /** * Monday */ public const MON = 'MON'; /** * Tuesday */ public const TUE = 'TUE'; /** * Wednesday */ public const WED = 'WED'; /** * Thursday */ public const THU = 'THU'; /** * Friday */ public const FRI = 'FRI'; /** * Saturday */ public const SAT = 'SAT'; /** * Sunday */ public const SUN = 'SUN'; }