Passed
Pull Request — master (#9)
by Klochok
02:24
created

Provider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 20
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getId() 0 2 1
A getUniqueId() 0 2 1
1
<?php
2
3
namespace hiqdev\php\billing\provider;
4
5
class Provider implements ProviderInterface
6
{
7
    /**
8
     * @var int
9
     */
10
    protected $id;
11
12
    /**
13
     * @inheritDoc
14
     */
15
    public function getId()
16
    {
17
        // TODO: Implement getId() method.
18
    }
19
20
    /**
21
     * @inheritDoc
22
     */
23
    public function getUniqueId()
24
    {
25
        // TODO: Implement getUniqueId() method.
26
    }
27
}
28