Application.php 346 B

123456789101112131415161718192021
  1. <?php
  2. namespace addons\LsActivity\services;
  3. use common\components\Service;
  4. /**
  5. * Class Application
  6. *
  7. * @package addons\LsActivity\services
  8. * @property ConfigService $config 默认配置
  9. */
  10. class Application extends Service
  11. {
  12. /**
  13. * @var array
  14. */
  15. public $childService = [
  16. 'config' => ConfigService::class
  17. ];
  18. }
粤ICP备19079148号