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
418B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Order;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Lc\CaracoleBundle\Doctrine\Extension\OrderPayoffInterface;
  5. use Lc\CaracoleBundle\Doctrine\Extension\OrderPayoffTrait;
  6. use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity;
  7. /**
  8. * @ORM\MappedSuperclass()
  9. */
  10. abstract class OrderPaymentModel extends AbstractLightEntity implements OrderPayoffInterface
  11. {
  12. use OrderPayoffTrait;
  13. }