Issues (1270)

src/Model/PreferenceSection.php (1 issue)

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
use RssApp\Model\Traits\Identified;
10
11
/**
12
 * @ORM\Entity
13
 */
14
class PreferenceSection extends Model
15
{
16
    use Identified;
17
18
    /**
19
     * @var int
20
     *
21
     * @ORM\Column(name="order_id", type="integer", nullable=false)
22
     */
23
    private $orderId;
0 ignored issues
show
The private property $orderId is not used, and could be removed.
Loading history...
24
}
25