<?phpnamespace App\Entity;use Doctrine\ORM\Mapping as ORM;/** * @ORM\Entity(repositoryClass="App\Repository\SmsCreditPackGenericRepository") */class SmsCreditPackGeneric extends CreditPackGeneric{ public function isCreditPack(){ return false; } public function isSmsCreditPack(){ return true; }}