src/Entity/Sales/Profile/VipPlacementPrice.php line 14

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by simpson <simpsonwork@gmail.com>
  4.  * Date: 2019-06-26
  5.  * Time: 18:06
  6.  */
  7. namespace App\Entity\Sales\Profile;
  8. use App\Entity\Sales\PaidPlacementPrice;
  9. use Doctrine\ORM\Mapping as ORM;
  10. #[ORM\Entity]
  11. class VipPlacementPrice extends PaidPlacementPrice
  12. {
  13.     public static function getType(): string
  14.     {
  15.         return 'vip_profile';
  16.     }
  17. }