We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 091e43e + 26f47cb commit a98e306Copy full SHA for a98e306
tests/Doctrine/Tests/ORM/Functional/Ticket/GH11072/GH11072EntityAdvanced.php
@@ -6,12 +6,22 @@
6
7
use Doctrine\ORM\Mapping\Column;
8
use Doctrine\ORM\Mapping\Entity;
9
+use Doctrine\ORM\Mapping\GeneratedValue;
10
+use Doctrine\ORM\Mapping\Id;
11
12
/**
13
* @Entity
14
*/
-class GH11072EntityAdvanced extends GH11072EntityBasic
15
+class GH11072EntityAdvanced
16
{
17
+ /**
18
+ * @Id
19
+ * @Column(type="integer")
20
+ * @GeneratedValue
21
+ * @var int
22
+ */
23
+ public $id;
24
+
25
/** @Column(type="json") */
26
public mixed $anything;
27
0 commit comments