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.

18 rindas
363B

  1. <?php
  2. namespace console\commands;
  3. use domain\Feature\Feature\FeatureModule;
  4. use yii\console\Controller;
  5. class ImportFeaturesController extends Controller
  6. {
  7. // ./yii import-features/index
  8. public function actionIndex()
  9. {
  10. $featureModule = FeatureModule::getInstance();
  11. $featureModule->getImporter()->importFromDefinition();
  12. }
  13. }
  14. ?>