Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit c83313f6 authored by Nicolas's avatar Nicolas
Browse files

Création de la classe du cron

parent cc6da77e
No related branches found
No related tags found
No related merge requests found
<?php
namespace NicolasBejean\Importer\Cron;
use \NicolasBejean\Importer\Helper\Cron\ProductImages as Helper;
/**
* Class ProductImages
*
* @category PHP
* @package NicolasBejean\Importer\Controller\Adminhtml\ProductImages
* @author Nicolas Béjean <nicolas@bejean.eu>
* @license https://github.com/nicolasbejean/importer/blob/master/licence.txt BSD Licence
* @link https://www.bejean.eu
*/
class ProductImages
{
/**
* @var Helper
*/
protected $helper;
/**
* ProductImages constructor.
*
* @param Helper $helper
*/
public function __construct(
Helper $helper
) {
$this->helper = $helper;
}
/**
* Execute l'Helper
*
* @return void
*/
public function execute()
{
$this->helper->execute();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment