OpcodeTrait.php 508 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Copyright (C) 2014-2022 Textalk/Abicart and contributors.
  4. *
  5. * This file is part of Websocket PHP and is free software under the ISC License.
  6. * License text: https://raw.githubusercontent.com/Textalk/websocket-php/master/COPYING
  7. */
  8. namespace WebSocket;
  9. trait OpcodeTrait
  10. {
  11. private static $opcodes = [
  12. 'continuation' => 0,
  13. 'text' => 1,
  14. 'binary' => 2,
  15. 'close' => 8,
  16. 'ping' => 9,
  17. 'pong' => 10,
  18. ];
  19. }