ok
Direktori : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/ |
Current File : /home2/selectio/www/fms-worksuite/vendor/square/square/src/Models/Weekday.php |
<?php declare(strict_types=1); namespace 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'; }