You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
148B

  1. <?php
  2. namespace domain\_;
  3. interface StatusInterface
  4. {
  5. const STATUS_DELETED = -1;
  6. const STATUS_OFFLINE = 0;
  7. const STATUS_ONLINE = 1;
  8. }