Issues (1270)

src/Model/Session.php (3 issues)

Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace RssApp\Model;
6
7
use Doctrine\ORM\Mapping as ORM;
8
use RssApp\Model;
9
10
/**
11
 * @ORM\Table(indexes={@ORM\Index(name="expire", columns={"expire"})})
12
 * @ORM\Entity
13
 */
14
class Session extends Model
15
{
16
    /**
17
     * @var string
18
     *
19
     * @ORM\Column(name="id", type="string", length=250, nullable=false)
20
     * @ORM\Id
21
     * @ORM\GeneratedValue(strategy="IDENTITY")
22
     */
23
    private $id;
0 ignored issues
show
The private property $id is not used, and could be removed.
Loading history...
24
25
    /**
26
     * @var string|null
27
     *
28
     * @ORM\Column(name="data", type="text", length=65535, nullable=true)
29
     */
30
    private $data;
0 ignored issues
show
The private property $data is not used, and could be removed.
Loading history...
31
32
    /**
33
     * @var int
34
     *
35
     * @ORM\Column(name="expire", type="integer", nullable=false)
36
     */
37
    private $expire;
0 ignored issues
show
The private property $expire is not used, and could be removed.
Loading history...
38
}
39