Completed
Pull Request — master (#12)
by Sullivan
02:15
created

CallNumberTrait   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

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