LogServiceInterface.php 243 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Author: lf
  4. * Blog: https://blog.feehi.com
  5. * Email: job@feehi.com
  6. * Created at: 2020-01-23 13:49
  7. */
  8. namespace common\services;
  9. interface LogServiceInterface extends ServiceInterface
  10. {
  11. const ServiceName = "logService";
  12. }