Purchase   A
last analyzed

Complexity

Total Complexity 4

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 2
c 1
b 0
f 1
dl 0
loc 21
rs 10
wmc 4

4 Methods

Rating   Name   Duplication   Size   Complexity  
A getRegistry() 0 2 1
A getPaymentMethod() 0 2 1
A getName() 0 2 1
A getPurchaseAmount() 0 2 1
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