File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -172,7 +172,6 @@ entity primary keys::
172172 namespace App\Entity;
173173
174174 use Doctrine\ORM\Mapping as ORM;
175- use Symfony\Bridge\Doctrine\IdGenerator\UuidGenerator;
176175 use Symfony\Component\Uid\Uuid;
177176
178177 class User implements UserInterface
@@ -181,7 +180,7 @@ entity primary keys::
181180 * @ORM\Id
182181 * @ORM\Column(type="uuid", unique=true)
183182 * @ORM\GeneratedValue(strategy="CUSTOM")
184- * @ORM\CustomIdGenerator(class=UuidGenerator::class )
183+ * @ORM\CustomIdGenerator(class="doctrine.uuid_generator" )
185184 */
186185 private $id;
187186
@@ -345,7 +344,6 @@ entity primary keys::
345344 namespace App\Entity;
346345
347346 use Doctrine\ORM\Mapping as ORM;
348- use Symfony\Bridge\Doctrine\IdGenerator\UlidGenerator;
349347 use Symfony\Component\Uid\Ulid;
350348
351349 class Product
@@ -354,7 +352,7 @@ entity primary keys::
354352 * @ORM\Id
355353 * @ORM\Column(type="ulid", unique=true)
356354 * @ORM\GeneratedValue(strategy="CUSTOM")
357- * @ORM\CustomIdGenerator(class=UlidGenerator::class )
355+ * @ORM\CustomIdGenerator(class="doctrine.ulid_generator" )
358356 */
359357 private $id;
360358
You can’t perform that action at this time.
0 commit comments