TriggerInterface.php 213 B

1234567891011
  1. <?php
  2. namespace EasySwoole\Trigger;
  3. interface TriggerInterface
  4. {
  5. public function error($msg,int $errorCode = E_USER_ERROR,Location $location = null);
  6. public function throwable(\Throwable $throwable);
  7. }