magento2-plugin/Model/Cron.php

23 lines
369 B
PHP

<?php
namespace Storefront\BTCPay\Model;
class Cron {
/**
* Item constructor.
* @param $token
* @param $host
* @param $item_params
*/
public function __construct($token, $host, $item_params) {
$this->token = $token;
$this->host = $host;
$this->item_params = $item_params;
$this->getItem();
}
}