Issues (1270)

src/Model/ErrorLog.php (6 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;
10
use RssApp\Model\Traits\Identified;
11
use RssApp\Model\Traits\Owned;
12
13
/**
14
 * @ORM\Table(indexes={@ORM\Index(name="owner_uid", columns={"owner_uid"})})
15
 * @ORM\Entity
16
 */
17
class ErrorLog extends Model
18
{
19
    use Identified,
20
        Owned;
21
22
    /**
23
     * @var int
24
     *
25
     * @ORM\Column(name="errno", type="integer", nullable=false)
26
     */
27
    private $errno;
0 ignored issues
show
The private property $errno is not used, and could be removed.
Loading history...
28
29
    /**
30
     * @var string
31
     *
32
     * @ORM\Column(name="errstr", type="text", length=65535, nullable=false)
33
     */
34
    private $errstr;
0 ignored issues
show
The private property $errstr is not used, and could be removed.
Loading history...
35
36
    /**
37
     * @var string
38
     *
39
     * @ORM\Column(name="filename", type="text", length=65535, nullable=false)
40
     */
41
    private $filename;
0 ignored issues
show
The private property $filename is not used, and could be removed.
Loading history...
42
43
    /**
44
     * @var int
45
     *
46
     * @ORM\Column(name="lineno", type="integer", nullable=false)
47
     */
48
    private $lineno;
0 ignored issues
show
The private property $lineno is not used, and could be removed.
Loading history...
49
50
    /**
51
     * @var string
52
     *
53
     * @ORM\Column(name="context", type="text", length=65535, nullable=false)
54
     */
55
    private $context;
0 ignored issues
show
The private property $context is not used, and could be removed.
Loading history...
56
57
    /**
58
     * @var DateTime
59
     *
60
     * @ORM\Column(name="created_at", type="datetime", nullable=false)
61
     */
62
    private $createdAt;
0 ignored issues
show
The private property $createdAt is not used, and could be removed.
Loading history...
63
}
64