Completed
Pull Request — master (#31)
by
unknown
02:29
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 1
Bugs 0 Features 1
Metric Value
wmc 2
c 1
b 0
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
/**
3
 * Created by IntelliJ IDEA.
4
 * User: bdudelsack
5
 * Date: 29.08.16
6
 * Time: 13:17
7
 */
8
9
namespace Genkgo\Camt\DTO;
10
11
12
class BankTransactionCode
13
{
14
    /** @var ProprietaryBankTransactionCode */
15
    private $proprietary;
16
17
    /**
18
     * @return ProprietaryBankTransactionCode
19
     */
20 1
    public function getProprietary()
21
    {
22 1
        return $this->proprietary;
23
    }
24
25
    /**
26
     * @param ProprietaryBankTransactionCode $proprietary
27
     */
28 16
    public function setProprietary($proprietary)
29
    {
30 16
        $this->proprietary = $proprietary;
31
    }
32
}