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.

21 satır
517B

  1. <?php
  2. namespace Lc\CaracoleBundle\Solver\Ticket;
  3. use Lc\CaracoleBundle\Model\Ticket\TicketModel;
  4. use Lc\SovBundle\Solver\Ticket\TicketSolver as SovTicketSolver;
  5. class TicketSolver extends SovTicketSolver
  6. {
  7. public static function getTypeChoices(): array
  8. {
  9. $choices = parent::getTypeChoices();
  10. $choicesProduct = [
  11. TicketModel::TYPE_PRODUCT_UNAVAILABLE,
  12. TicketModel::TYPE_PRODUCT_ERROR
  13. ];
  14. return array_merge($choices, $choicesProduct);
  15. }
  16. }