Blame view

modules/file/Module.php 246 Bytes
ea1a19bc   Yarik   Testing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php

  namespace artweb\artbox\modules\file;

  

  use yii\base\BootstrapInterface;

  

  class Module extends \yii\base\Module

  {

  	public function init()

  	{

  		parent::init();

  		

  		\Yii::configure($this, require(__DIR__.'/config.php'));

  	}

  

  }