ProviderInterface.php 603 B

1234567891011121314151617
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | [ 容器接口 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018-2020 rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: TABLE ME
  8. // +----------------------------------------------------------------------
  9. // | Date: 2020-08-25 16:18
  10. // +----------------------------------------------------------------------
  11. namespace library\interfaces;
  12. interface ProviderInterface
  13. {
  14. public function register($config);
  15. }