1
0
mirror of synced 2025-02-21 22:43:17 +03:00
magento-module/Cron/Icml.php
Akolzin Dmitry 3b6430cf7d Refactoring
2018-04-28 11:59:43 +03:00

23 lines
394 B
PHP

<?php
namespace Retailcrm\Retailcrm\Cron;
class Icml
{
private $logger;
private $icml;
public function __construct(
\Retailcrm\Retailcrm\Model\Logger\Logger $logger,
\Retailcrm\Retailcrm\Model\Icml\Icml $icml
) {
$this->logger = $logger;
$this->icml = $icml;
}
public function execute()
{
$this->icml->generate();
}
}