| Current Path : /var/www/magento.test.indacotrentino.com/www/app/code/Webkul/BuyButton/Model/ |
| Current File : /var/www/magento.test.indacotrentino.com/www/app/code/Webkul/BuyButton/Model/App.php |
<?php
/**
* Webkul Software.
*
* @category Webkul
* @package Webkul_BuyButton
* @author Webkul
* @copyright Copyright (c) Webkul Software Private Limited (https://webkul.com)
* @license https://store.webkul.com/license.html
*/
namespace Webkul\BuyButton\Model;
class App
{
public function __construct(
\Webkul\BuyButton\Model\InitializeJs $initializeJs
) {
$this->initializeJs = $initializeJs;
}
public function createWidget()
{
$js = $this->initializeJs->load();
return $js;
}
}