Issues (1270)

src/Model/AppPassword.php (5 issues)

Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace RssApp\Model;
6
7
use DateTime;
8
use Doctrine\ORM\Mapping as ORM;
9
use RssApp\Model\Traits\Identified;
10
use RssApp\Model\Traits\Owned;
11
use RssApp\Model;
12
13
/**
14
 * @ORM\Entity
15
 */
16
class AppPassword extends Model
17
{
18
    use Identified,
19
        Owned;
20
21
    /**
22
     * @var string
23
     *
24
     * @ORM\Column(name="title", type="string", length=250, nullable=false)
25
     */
26
    private $title;
0 ignored issues
show
The private property $title is not used, and could be removed.
Loading history...
27
28
    /**
29
     * @var string
30
     *
31
     * @ORM\Column(name="pwd_hash", type="text", length=65535, nullable=false)
32
     */
33
    private $pwdHash;
0 ignored issues
show
The private property $pwdHash is not used, and could be removed.
Loading history...
34
35
    /**
36
     * @var string
37
     *
38
     * @ORM\Column(name="service", type="string", length=100, nullable=false)
39
     */
40
    private $service;
0 ignored issues
show
The private property $service is not used, and could be removed.
Loading history...
41
42
    /**
43
     * @var DateTime
44
     *
45
     * @ORM\Column(name="created", type="datetime", nullable=false)
46
     */
47
    private $created;
0 ignored issues
show
The private property $created is not used, and could be removed.
Loading history...
48
49
    /**
50
     * @var DateTime|null
51
     *
52
     * @ORM\Column(name="last_used", type="datetime", nullable=true)
53
     */
54
    private $lastUsed;
0 ignored issues
show
The private property $lastUsed is not used, and could be removed.
Loading history...
55
}
56