$this->setImport <- что на замену?

Доброе утро форумчане, пробую переписать модуль на yii 2 но столкнулся с проблемой! В yii 1.1x

В классе модуля был $this->setImport()

пример:




	public function init()

	{

		// this method is called when the module is being created

		// you may place code here to customize the module or the application


		// import the module-level models and components

		$this->setImport(array(

			'community.models.*',

			'community.components.*',

		));

		

	}



Пытаюсь реализовать также но выдаёт ошибку, вот код:




<?php


namespace app\modules\community;


class Module extends \yii\base\Module

{

	public $controllerNamespace = 'app\modules\community\controllers';

	

	public function init()

	{

		parent::init();

		// this method is called when the module is being created

		// you may place code here to customize the module or the application


		// import the module-level models and components

		$this->setImport(array(

			'community.models.*',

			'community.components.*',

		));

		

	}


	public function beforeControllerAction($controller, $action)

	{

		if(parent::beforeControllerAction($controller, $action))

		{

			// this method is called before any module controller action is performed

			// you may place customized code here

			return true;

		}

		else

			return false;

	}

}



Что использовать вместо $this->setImport?

в этой функции больше нет нужды

что именно вам необходимо получить в результате?