for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Entity\User;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity()
* @ORM\Table(name="users__product_owner")
*/
class ProductOwner extends User
{
public function getType(): string
return self::TYPE_PRODUCT_OWNER;
}