for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Matks\Bundle\CustomerSupportBundle\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* Company agent entity
*
* @ORM\Entity()
* @author Mathieu Ferment <[email protected]>
*/
class CompanyAgent extends User
{
* @return bool
public function isACustomer()
return false;
}