PurchaseSession
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 3
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 2
c 1
b 0
f 1
dl 0
loc 3
wmc 0
1
<?php
2
3
namespace ByTIC\Payments\Models\PurchaseSessions;
4
5
use ByTIC\Payments\Models\AbstractModels\AbstractRecord;
6
7
/**
8
 * Class PurchaseSession
9
 * @package ByTIC\Payments\Models\PurchaseSessions
10
 */
11
class PurchaseSession extends AbstractRecord
12
{
13
    use PurchaseSessionTrait;
0 ignored issues
show
introduced by
The trait ByTIC\Payments\Models\Pu...ns\PurchaseSessionTrait requires some properties which are not provided by ByTIC\Payments\Models\Pu...essions\PurchaseSession: $timestamp, $timestamps, $status
Loading history...
14
}
15