EmploymentEntity
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 0
eloc 5
dl 0
loc 6
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
 * Employment Entity
17
 *
18
 * @author EA
19
 * @method setEmploymentStatus(int $employmentStatus)
20
 * @method int|null getEmploymentStatus()
21
 * @method setEmploymentStart(string $employmentStart)
22
 * @method string|null getEmploymentStart()
23
 * @method setEmploymentPhone(string $employmentPhone)
24
 * @method string|null getEmploymentPhone()
25
 *
26
 * @package PayBreak\Sdk\Entities\Profile;
27
 */
28
class EmploymentEntity extends AbstractEntity
29
{
30
    protected $properties = [
31
        'employment_status' => self::TYPE_INT,
32
        'employment_start' => self::TYPE_STRING,
33
        'phone_employer' => self::TYPE_STRING,
34
    ];
35
}
36