Nevar pievienot vairāk kā 25 tēmas
Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
|
- <?php
-
- namespace console\commands;
-
- use domain\Feature\Feature\FeatureModule;
- use yii\console\Controller;
-
- class ImportFeaturesController extends Controller
- {
- // ./yii import-features/index
- public function actionIndex()
- {
- $featureModule = FeatureModule::getInstance();
- $featureModule->getImporter()->importFromDefinition();
- }
- }
-
- ?>
|