Purchase::getPaymentMethod()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
cc 1
eloc 0
c 1
b 0
f 1
nc 1
nop 0
dl 0
loc 2
rs 10
1
<?php
2
3
namespace ByTIC\Payments\Models\Purchases;
4
5
use ByTIC\Payments\Models\AbstractModels\AbstractRecord;
6
7
/**
8
 * Class Purchase
9
 * @package ByTIC\Payments\Models\Purchases
10
 */
11
class Purchase extends AbstractRecord
12
{
13
    use PurchaseTrait;
14
15
    public function getPaymentMethod()
16
    {
17
        // TODO: Implement getPaymentMethod() method.
18
    }
19
20
    public function getPurchaseAmount()
21
    {
22
        // TODO: Implement getPurchaseAmount() method.
23
    }
24
25
    public function getName()
26
    {
27
        // TODO: Implement getName() method.
28
    }
29
30
    public function getRegistry()
31
    {
32
        // TODO: Implement getRegistry() method.
33
    }
34
}
35