App.php 280 B

123456789101112131415161718
  1. <?php
  2. namespace think\swoole;
  3. use think\swoole\coroutine\Context;
  4. class App extends \think\App
  5. {
  6. public function runningInConsole(): bool
  7. {
  8. return Context::hasData('_fd');
  9. }
  10. public function clearInstances()
  11. {
  12. $this->instances = [];
  13. }
  14. }