Issues (134)

src/api/person.php (1 issue)

Severity
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
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