IPusher.php 173 B

1234567891011121314
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: stanley-king
  5. * Date: 2017/11/2
  6. * Time: 上午10:17
  7. */
  8. namespace async_push;
  9. interface IPusher
  10. {
  11. public function run();
  12. }