Runtime.php 360 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. namespace Swoole;
  3. class Runtime
  4. {
  5. /**
  6. * @return mixed
  7. */
  8. public static function enableCoroutine($enable = null, $flags = null)
  9. {
  10. }
  11. /**
  12. * @return mixed
  13. */
  14. public static function getHookFlags()
  15. {
  16. }
  17. /**
  18. * @return mixed
  19. */
  20. public static function setHookFlags($flags)
  21. {
  22. }
  23. }