Response.php 303 B

1234567891011121314151617181920
  1. <?php
  2. namespace ThurData\Servers\KerioEmail\App\Enums;
  3. /**
  4. *
  5. * Created by PhpStorm.
  6. * User: Tomasz Bielecki ( tomasz.bi@thurdata.com )
  7. * Date: 03.10.19
  8. * Time: 14:22
  9. * Class Response
  10. */
  11. class Response
  12. {
  13. const SUCCESS = 'success';
  14. const FAILED = 'failed';
  15. const ERROR = 'error';
  16. }