DocumentAddressApiModel   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 60
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 60
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDateMap() 0 6 1
1
<?php
2
3
namespace Fousky\Component\iDoklad\Model\Documents;
4
5
use Fousky\Component\iDoklad\Model\iDokladAbstractModel;
6
7
/**
8
 * @method null|string getAccountNumber()
9
 * @method null|string getBank()
10
 * @method null|string getBankNumberCode()
11
 * @method null|string getCity()
12
 * @method null|string getCountry()
13
 * @method null|int getCountryId()
14
 * @method null|\DateTime getDateLastChange()
15
 * @method null|string getEmail()
16
 * @method null|string getFax()
17
 * @method null|string getFirstname()
18
 * @method null|string getIban()
19
 * @method null|int getId()
20
 * @method null|string getIdentificationNumber()
21
 * @method null|string getMobile()
22
 * @method null|string getNickName()
23
 * @method null|string getPhone()
24
 * @method null|string getPostalCode()
25
 * @method null|string getStreet()
26
 * @method null|string getSurname()
27
 * @method null|string getSwift()
28
 * @method null|string getTitle()
29
 * @method null|string getVatIdentificationNumber()
30
 * @method null|string getVatIdentificationNumberSk()
31
 * @method null|string getWww()
32
 *
33
 * @author Lukáš Brzák <[email protected]>
34
 */
35
class DocumentAddressApiModel extends iDokladAbstractModel
36
{
37
    public $AccountNumber;
38
39
    public $Bank;
40
41
    public $BankNumberCode;
42
43
    public $City;
44
45
    public $Country;
46
47
    public $CountryId;
48
49
    public $DateLastChange;
50
51
    public $Email;
52
53
    public $Fax;
54
55
    public $Firstname;
56
57
    public $Iban;
58
59
    public $Id;
60
61
    public $IdentificationNumber;
62
63
    public $Mobile;
64
65
    public $NickName;
66
67
    public $Phone;
68
69
    public $PostalCode;
70
71
    public $Street;
72
73
    public $Surname;
74
75
    public $Swift;
76
77
    public $Title;
78
79
    public $VatIdentificationNumber;
80
81
    public $VatIdentificationNumberSk;
82
83
    public $Www;
84
85
    /**
86
     * @return array
87
     */
88
    public static function getDateMap(): array
89
    {
90
        return [
91
            'DateLastChange',
92
        ];
93
    }
94
}
95