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

PaymentMethods::getBasePathForMedia()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
c 0
b 0
f 0
nc 1
nop 0
dl 0
loc 3
rs 10
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