Pool.php 338 B

12345678910111213141516171819202122232425
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Tioncico
  5. * Date: 2020/4/8 0008
  6. * Time: 11:29
  7. */
  8. namespace EasySwoole\Pool\Tests;
  9. use EasySwoole\Pool\AbstractPool;
  10. class Pool extends AbstractPool
  11. {
  12. protected function createObject()
  13. {
  14. return new PoolObject();
  15. // TODO: Implement createObject() method.
  16. }
  17. }