Completed
Pull Request — master (#31)
by
unknown
22:01
created

BankTransactionCode   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 2
Bugs 1 Features 1
Metric Value
wmc 2
c 2
b 1
f 1
lcom 0
cbo 0
dl 0
loc 21
ccs 5
cts 5
cp 1
rs 10

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getProprietary() 0 4 1
A setProprietary() 0 4 1
1
<?php
2
namespace Genkgo\Camt\DTO;
3
4
class BankTransactionCode
5
{
6
    /** @var ProprietaryBankTransactionCode */
7
    private $proprietary;
8
9
    /**
10
     * @return ProprietaryBankTransactionCode
11
     */
12 1
    public function getProprietary()
13
    {
14 1
        return $this->proprietary;
15
    }
16
17
    /**
18
     * @param ProprietaryBankTransactionCode $proprietary
19
     */
20 19
    public function setProprietary(ProprietaryBankTransactionCode $proprietary)
21
    {
22 19
        $this->proprietary = $proprietary;
23 19
    }
24
}
25