NeoClientEvents.php 313 B

1234567891011121314
  1. <?php
  2. namespace Neoxygen\NeoClient;
  3. final class NeoClientEvents
  4. {
  5. const NEO_PRE_REQUEST_SEND = 'neoclient.pre_request_send';
  6. const NEO_POST_REQUEST_SEND = 'neoclient.post_request_send';
  7. const NEO_HTTP_EXCEPTION = 'neoclient.http_exception';
  8. const NEO_LOG_MESSAGE = 'neoclient.log_message';
  9. }