17 lines
256 B
PHP
17 lines
256 B
PHP
|
<?php
|
||
|
/**
|
||
|
* Created by PhpStorm.
|
||
|
* User: mkoch
|
||
|
* Date: 2/15/2017
|
||
|
* Time: 9:52 PM
|
||
|
*/
|
||
|
|
||
|
namespace BusinessLogic\Statuses;
|
||
|
|
||
|
|
||
|
class Closable {
|
||
|
const YES = "yes";
|
||
|
const STAFF_ONLY = "sonly";
|
||
|
const CUSTOMERS_ONLY = "conly";
|
||
|
const NO = "no";
|
||
|
}
|