Skip to content

Instantly share code, notes, and snippets.

@anvodev
Last active May 12, 2020 19:35
Show Gist options
  • Select an option

  • Save anvodev/9b8a1fb928369ed211c775a2fbe9aea6 to your computer and use it in GitHub Desktop.

Select an option

Save anvodev/9b8a1fb928369ed211c775a2fbe9aea6 to your computer and use it in GitHub Desktop.
Custom Id generator in Customer Entity
<?php
//src/Entity/Customer.php
//...
class Customer
{
/**
* @ORM\Id()
* @ORM\GeneratedValue("CUSTOM")
* @ORM\Column(type="integer")
* @ORM\CustomIdGenerator("App\Doctrine\CustomerIdGenerator")
*/
private $id;
//...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment