Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
54 | class GH7286Entity |
||
55 | { |
||
56 | /** |
||
57 | * @Id |
||
58 | * @Column(type="integer") |
||
59 | * @GeneratedValue |
||
60 | * @var int |
||
61 | */ |
||
62 | public $id; |
||
63 | |||
64 | /** |
||
65 | * @Column |
||
66 | * @var string |
||
67 | */ |
||
68 | public $type; |
||
69 | |||
70 | /** |
||
71 | * @Column(type="integer") |
||
72 | * @var int |
||
73 | */ |
||
74 | public $version; |
||
75 | |||
76 | public function __construct(string $type, int $version) |
||
82 |