PluginStorage
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 5
c 1
b 0
f 0
dl 0
loc 18
wmc 0
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
use RssApp\Model\Traits\Owned;
11
12
/**
13
 * @ORM\Table(indexes={@ORM\Index(name="owner_uid", columns={"owner_uid"})})
14
 * @ORM\Entity
15
 */
16
class PluginStorage extends Model
17
{
18
    use Identified,
19
        Owned;
20
21
    /**
22
     * @var string
23
     *
24
     * @ORM\Column(name="name", type="string", length=100, nullable=false)
25
     */
26
    private $name;
0 ignored issues
show
introduced by
The private property $name is not used, and could be removed.
Loading history...
27
28
    /**
29
     * @var string
30
     *
31
     * @ORM\Column(name="content", type="text", length=0, nullable=false)
32
     */
33
    private $content;
0 ignored issues
show
introduced by
The private property $content is not used, and could be removed.
Loading history...
34
}
35