Logo white

Yarik / artbox-file

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • artbox-file
  • Module.php
  • Namespaces
    143c55a9
    Yarik authored
    2016-11-09 14:25:19 +0200  
    Browse Code ยป
Module.php 285 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9 10 11 12 13
<?php
    namespace artweb\artbox\file;
    
    class Module extends \yii\base\Module
    {
        public function init()
        {
            parent::init();
            
            \Yii::configure($this, require( __DIR__ . '/config.php' ));
        }
        
    }