Ecodev /
graphql-doctrine
| 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
Bug
introduced
by
Loading history...
|
|||
| 22 | } |
||
| 23 |