|
1234567891011121314151617 |
- <?php
-
- namespace Lc\ShopBundle\Model;
-
- use Doctrine\ORM\Mapping as ORM;
- use Lc\ShopBundle\Context\OrderPaymentInterface;
- use Lc\ShopBundle\Context\OrderPayoffInterface;
- use Lc\ShopBundle\Context\ReductionInterface;
-
- /**
- * @ORM\MappedSuperclass()
- */
- abstract class OrderPayment extends AbstractEntity implements OrderPayoffInterface
- {
- use OrderPayoffTrait;
-
- }
|