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::
172
172
namespace App\Entity;
173
173
174
174
use Doctrine\ORM\Mapping as ORM;
175
- use Symfony\Bridge\Doctrine\IdGenerator\UuidGenerator;
176
175
use Symfony\Component\Uid\Uuid;
177
176
178
177
class User implements UserInterface
@@ -181,7 +180,7 @@ entity primary keys::
181
180
* @ORM\Id
182
181
* @ORM\Column(type="uuid", unique=true)
183
182
* @ORM\GeneratedValue(strategy="CUSTOM")
184
- * @ORM\CustomIdGenerator(class=UuidGenerator::class )
183
+ * @ORM\CustomIdGenerator(class="doctrine.uuid_generator" )
185
184
*/
186
185
private $id;
187
186
@@ -345,7 +344,6 @@ entity primary keys::
345
344
namespace App\Entity;
346
345
347
346
use Doctrine\ORM\Mapping as ORM;
348
- use Symfony\Bridge\Doctrine\IdGenerator\UlidGenerator;
349
347
use Symfony\Component\Uid\Ulid;
350
348
351
349
class Product
@@ -354,7 +352,7 @@ entity primary keys::
354
352
* @ORM\Id
355
353
* @ORM\Column(type="ulid", unique=true)
356
354
* @ORM\GeneratedValue(strategy="CUSTOM")
357
- * @ORM\CustomIdGenerator(class=UlidGenerator::class )
355
+ * @ORM\CustomIdGenerator(class="doctrine.ulid_generator" )
358
356
*/
359
357
private $id;
360
358
You can’t perform that action at this time.
0 commit comments