File "Weekday.php"

Full Path: /home/capoeirajd/www/wp-content/plugins/wpforms-lite/vendor_prefixed/square/square/src/Models/Weekday.php
File size: 553 bytes
MIME-type: text/x-php
Charset: utf-8

<?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';
}