Passed
Push — v1 ( cb608b...95405e )
by Andrew
07:32 queued 03:24
created

Commerce::orderComplete()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 12
Code Lines 7

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 12
rs 9.4285
c 0
b 0
f 0
cc 3
eloc 7
nc 3
nop 1
1
<?php
2
/**
3
 * Instant Analytics plugin for Craft CMS 3.x
4
 *
5
 * Instant Analytics brings full Google Analytics support to your Twig templates
6
 *
7
 * @link      https://nystudio107.com
8
 * @copyright Copyright (c) 2017 nystudio107
9
 */
10
11
namespace nystudio107\instantanalytics\services;
12
13
use nystudio107\instantanalytics\InstantAnalytics;
14
15
use Craft;
16
use craft\base\Component;
17
18
/**
19
 * Commerce Service
20
 *
21
 * @author    nystudio107
22
 * @package   InstantAnalytics
23
 * @since     1.0.0
24
 */
25
class Commerce extends Component
26
{
27
    // Public Methods
28
    // =========================================================================
29
30
    // TODO: pending Commerce for Craft 3
31
}
32