Completed
Pull Request — master (#31)
by
unknown
02:29
created

BankTransactionCode::setProprietary()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 3
cts 3
cp 1
rs 10
cc 1
eloc 2
nc 1
nop 1
crap 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
}