FinancialEntity
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 6
dl 0
loc 7
c 0
b 0
f 0
1
<?php
2
/*
3
 * This file is part of the PayBreak/paybreak-sdk-php package.
4
 *
5
 * (c) PayBreak <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace PayBreak\Sdk\Entities\Profile;
12
13
use WNowicki\Generic\AbstractEntity;
14
15
/**
16
 * Financial Entity
17
 *
18
 * @author EB
19
 * @method int|null getMonthlyIncome()
20
 * @method setMonthlyIncome($monthlyIncome)
21
 * @method int|null getMonthlyOutgoings()
22
 * @method setMonthlyOutgoings($monthlyOutgoings)
23
 * @method string|null getBankSortCode()
24
 * @method setBankSortCode($sortCode)
25
 * @method string|null getBankAccount()
26
 * @method setBankAccount($sortCode)
27
 *
28
 * @package PayBreak\Sdk\Entities\Profile;
29
 */
30
class FinancialEntity extends AbstractEntity
31
{
32
    protected $properties = [
33
        'monthly_income' => self::TYPE_INT,
34
        'monthly_outgoings' => self::TYPE_INT,
35
        'bank_sort_code' => self::TYPE_STRING,
36
        'bank_account' => self::TYPE_STRING,
37
    ];
38
}
39