-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCheckout.php
More file actions
executable file
·30 lines (28 loc) · 729 Bytes
/
Checkout.php
File metadata and controls
executable file
·30 lines (28 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/**
* Arikaim
*
* @link http://www.arikaim.com
* @copyright Copyright (c) Konstantin Atanasov <info@arikaim.com>
* @license http://www.arikaim.com/license
*
*/
namespace Arikaim\Modules\Checkout;
use Arikaim\Core\Extension\Module;
/**
* Checkout module class
*/
class Checkout extends Module
{
/**
* Install module
*
* @return void
*/
public function install()
{
$this->installDriver('Arikaim\\Modules\\Checkout\\Drivers\\PayPalSubscriptionsDriver');
$this->installDriver('Arikaim\\Modules\\Checkout\\Drivers\\PayPalExpressCheckoutDriver');
$this->installDriver('Arikaim\\Modules\\Checkout\\Drivers\\StripeCheckoutDriver');
}
}