Failed Conditions
Pull Request — master (#62)
by Adrien
06:30 queued 04:20
created

tests/Blog/Model/Special/ModelWithTraits.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GraphQLTests\Doctrine\Blog\Model\Special;
6
7
use Doctrine\ORM\Mapping as ORM;
8
9
/**
10
 * @ORM\MappedSuperclass
11
 */
12
final class ModelWithTraits
13
{
14
    use TraitWithSortingAndFilter;
15
16
    /**
17
     * @ORM\Column(type="integer", options={"unsigned" = true})
18
     * @ORM\Id
19
     * @ORM\GeneratedValue(strategy="IDENTITY")
20
     */
21
    private readonly int $id;
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_STRING, expecting T_VARIABLE on line 21 at column 21
Loading history...
22
}
23