Blame view

Module.php 238 Bytes
e10587b1   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php

  namespace artweb\artbox\file;

  

  use yii\base\BootstrapInterface;

  

  class Module extends \yii\base\Module

  {

  	public function init()

  	{

  		parent::init();

  		

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

  	}

  

  }