Passed
Push — main ( fda4ea...a94ce1 )
by Gabriel
13:57
created

PaymentMethods   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
c 0
b 0
f 0
dl 0
loc 8
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getBasePathForMedia() 0 3 1
1
<?php
2
3
namespace ByTIC\Payments\Mobilpay\Tests\Fixtures\Records\PaymentMethods;
4
5
use ByTIC\Payments\Models\Methods\Traits\RecordsTrait;
6
use Nip\Records\RecordManager;
7
use Nip\Utility\Traits\SingletonTrait;
8
9
/**
10
 * Class PaymentMethods
11
 * @package ByTIC\Payments\Tests\Fixtures\Records\PaymentMethods
12
 */
13
class PaymentMethods extends RecordManager
14
{
15
    use SingletonTrait;
16
    use RecordsTrait;
17
18
    public function getBasePathForMedia()
19
    {
20
        return TEST_FIXTURE_PATH . '/files/';
21
    }
22
}
23