ConfigTrait.php 246 B

123456789101112131415161718
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: NODELOG
  5. * Date: 2016/11/7
  6. * Time: 下午11:09
  7. */
  8. namespace common\modules\config\models;
  9. trait ConfigTrait
  10. {
  11. public function getConfig()
  12. {
  13. return \Yii::$app->get('config');
  14. }
  15. }