person
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
c 0
b 0
f 0
dl 0
loc 9
wmc 0
1
<?php
2
/**
3
 * @author CONTENT CONTROL http://www.contentcontrol-berlin.de/
4
 * @copyright CONTENT CONTROL http://www.contentcontrol-berlin.de/
5
 * @license http://www.gnu.org/licenses/gpl.html GNU General Public License
6
 */
7
8
namespace midgard\portable\api;
9
10
/**
11
 * @property integer $id Local non-replication-safe database identifier
12
 * @property string $guid
13
 * @property string $firstname First name of the person
14
 * @property string $lastname Last name of the person
15
 */
16
class person extends mgdobject
17
{
18
    private int $id = 0;
0 ignored issues
show
introduced by
The private property $id is not used, and could be removed.
Loading history...
19
20
    protected string $guid = '';
21
22
    protected $firstname = '';
23
24
    protected $lastname = '';
25
}
26