FileMaster
Search
Toggle Dark Mode
Home
/
.
/
wp-content
/
plugins
/
ameliabooking
/
vendor
/
square
/
square
/
src
/
Models
Edit File: LocationType.php
<?php declare(strict_types=1); namespace Square\Models; /** * A location's type. */ class LocationType { /** * A place of business with a physical location. */ public const PHYSICAL = 'PHYSICAL'; /** * A place of business that is mobile, such as a food truck or online store. */ public const MOBILE = 'MOBILE'; }
Save
Back