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 | use RssApp\Model\Traits\Identified; |
||
10 | |||
11 | /** |
||
12 | * @ORM\Entity |
||
13 | */ |
||
14 | class FeedbrowserCache extends Model |
||
15 | { |
||
16 | use Identified; |
||
17 | |||
18 | /** |
||
19 | * @var string |
||
20 | * |
||
21 | * @ORM\Column(name="feed_url", type="text", length=65535, nullable=false) |
||
22 | */ |
||
23 | private $feedUrl; |
||
0 ignored issues
–
show
introduced
by
![]() |
|||
24 | |||
25 | /** |
||
26 | * @var string |
||
27 | * |
||
28 | * @ORM\Column(name="site_url", type="text", length=65535, nullable=false) |
||
29 | */ |
||
30 | private $siteUrl; |
||
0 ignored issues
–
show
|
|||
31 | |||
32 | /** |
||
33 | * @var string |
||
34 | * |
||
35 | * @ORM\Column(name="title", type="text", length=65535, nullable=false) |
||
36 | */ |
||
37 | private $title; |
||
0 ignored issues
–
show
|
|||
38 | |||
39 | /** |
||
40 | * @var int |
||
41 | * |
||
42 | * @ORM\Column(name="subscribers", type="integer", nullable=false) |
||
43 | */ |
||
44 | private $subscribers; |
||
0 ignored issues
–
show
|
|||
45 | } |
||
46 |