Version
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 10
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
11
/**
12
 * @ORM\Entity
13
 */
14
class Version extends Model
15
{
16
    use Identified;
17
18
    /**
19
     * @var int
20
     *
21
     * @ORM\Column(name="schema_version", type="integer", nullable=false)
22
     */
23
    private $schemaVersion;
0 ignored issues
show
introduced by
The private property $schemaVersion is not used, and could be removed.
Loading history...
24
}
25