Issues (1270)

src/Model/ArchivedFeed.php (4 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\Table(indexes={@ORM\Index(name="owner_uid", columns={"owner_uid"})})
15
 * @ORM\Entity
16
 */
17
class ArchivedFeed extends Model
18
{
19
    use Identified,
20
        Owned;
21
22
    /**
23
     * @var DateTime
24
     *
25
     * @ORM\Column(name="created", type="datetime", nullable=false)
26
     */
27
    private $created;
0 ignored issues
show
The private property $created is not used, and could be removed.
Loading history...
28
29
    /**
30
     * @var string
31
     *
32
     * @ORM\Column(name="title", type="string", length=200, nullable=false)
33
     */
34
    private $title;
0 ignored issues
show
The private property $title is not used, and could be removed.
Loading history...
35
36
    /**
37
     * @var string
38
     *
39
     * @ORM\Column(name="feed_url", type="text", length=65535, nullable=false)
40
     */
41
    private $feedUrl;
0 ignored issues
show
The private property $feedUrl is not used, and could be removed.
Loading history...
42
43
    /**
44
     * @var string
45
     *
46
     * @ORM\Column(name="site_url", type="string", length=250, nullable=false)
47
     */
48
    private $siteUrl = '';
0 ignored issues
show
The private property $siteUrl is not used, and could be removed.
Loading history...
49
}
50