Issues (26)

tests/Entity/Example.php (1 issue)

Severity
1
<?php
2
3
namespace DoctrineRepoHelperTest\Entity;
4
5
use Doctrine\ORM\Mapping as ORM;
6
7
/**
8
 * Class Example
9
 * @package DoctrineRepoHelper\Entity
10
 * @ORM\Entity(repositoryClass="DoctrineRepoHelperTest\Repository\ExampleRepository")
11
 */
12
class Example
13
{
14
    /**
15
     * @var int
16
     * @ORM\Column(type="integer")
17
     * @ORM\Id
18
     * @ORM\GeneratedValue
19
     */
20
    private $id;
0 ignored issues
show
The private property $id is not used, and could be removed.
Loading history...
21
}
22