Passed
Push — master ( c0f464...9c6e80 )
by Gabriel
11:21
created

PurchaseSessions::getRootNamespace()   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\Models\PurchaseSessions;
4
5
use ByTIC\Common\Records\Records;
6
use Nip\Utility\Traits\SingletonTrait;
7
8
/**
9
 * Class PurchaseSessions
10
 * @package ByTIC\Payments\Models\PurchaseSessions
11
 */
12
class PurchaseSessions extends Records
13
{
14
    use SingletonTrait;
15
    use PurchaseSessionsTrait;
16
17
    public function getRootNamespace()
18
    {
19
        return 'ByTIC\Payments\Models\\';
20
    }
21
}