Completed
Push — master ( e8b86c...279d13 )
by Sullivan
02:12
created

TransactionNumberTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 15
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A getTransactionNumber() 0 4 1
1
<?php
2
3
namespace Nexy\PayboxDirect\Request;
4
5
trait TransactionNumberTrait
6
{
7
    /**
8
     * @var int
9
     */
10
    private $transactionNumber;
11
12
    /**
13
     * @return int
14
     */
15
    final protected function getTransactionNumber()
16
    {
17
        return $this->transactionNumber;
18
    }
19
}
20