src/Entity/SmsCreditPackGeneric.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. /**
  5.  * @ORM\Entity(repositoryClass="App\Repository\SmsCreditPackGenericRepository")
  6.  */
  7. class SmsCreditPackGeneric extends CreditPackGeneric
  8. {
  9.     public function isCreditPack(){
  10.         return false;
  11.     }
  12.     public function isSmsCreditPack(){
  13.         return true;
  14.     }
  15. }