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;
/**
* Customer entity
*
* @ORM\Entity()
* @author Mathieu Ferment <[email protected]>
*/
class Customer extends User
{
* @return bool
public function isACustomer()
return true;
}