You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
354B

  1. <?php
  2. namespace Lc\SovBundle\Factory\Reminder;
  3. use App\Entity\Reminder\Reminder;
  4. use Lc\SovBundle\Factory\AbstractFactory;
  5. use Lc\SovBundle\Model\Reminder\ReminderInterface;
  6. class ReminderFactory extends AbstractFactory implements ReminderFactoryInterface
  7. {
  8. public function getEntityClass()
  9. {
  10. return ReminderInterface::class;
  11. }
  12. }