123456789101112131415161718192021222324252627282930 |
- <?php
- namespace Swoole;
- class Runtime
- {
- /**
- * @return mixed
- */
- public static function enableCoroutine($enable = null, $flags = null)
- {
- }
- /**
- * @return mixed
- */
- public static function getHookFlags()
- {
- }
- /**
- * @return mixed
- */
- public static function setHookFlags($flags)
- {
- }
- }
|