You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
419B

  1. <?php
  2. namespace console\commands;
  3. use common\logic\Producer\Producer\Module\ProducerModule;
  4. use yii\console\Controller;
  5. class ClosingOrdersController extends Controller
  6. {
  7. public function actionIndex()
  8. {
  9. $producerModule = ProducerModule::getInstance();
  10. $arrayProducers = $producerModule->getRepository()->findProducers();
  11. foreach($arrayProducers as $producer) {
  12. }
  13. }
  14. }
  15. ?>