hotel_commerce/modules/qlopaypalcommerce/libs/PayPalCommerce.php
2023-06-26 13:09:26 +05:30

30 lines
665 B
PHP

<?php
/**
* 2010-2021 Webkul.
*
* NOTICE OF LICENSE
*
* All right is reserved,
* Please go through LICENSE.txt file inside our module
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please refer to CustomizationPolicy.txt file inside our module for more information.
*
* @author Webkul IN
* @copyright 2010-2021 Webkul IN
* @license LICENSE.txt
*/
include_once(dirname(__FILE__) . '/Orders.php');
class PayPalCommerce {
public $orders = null;
public function __construct() {
$this->orders = new PayPalOrders();
}
}