Your IP : 216.73.217.13


Current Path : /home/rtorresani/www/app/code/Webkul/BuyButton/Model/
Upload File :
Current File : //home/rtorresani/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;
    }
}