|
1234567891011121314151617181920212223242526272829303132 |
- <?php
-
- namespace Lc\CaracoleBundle\Model\Order;
-
- use Doctrine\ORM\Mapping as ORM;
- use Lc\CaracoleBundle\Doctrine\Extension\ReductionTrait;
- use Lc\SovBundle\Doctrine\EntityInterface;
-
-
- abstract class OrderProductReductionCatalogModel implements EntityInterface, OrderProductReductionCatalogInterface
- {
- use ReductionTrait;
-
-
-
- protected $title;
-
- public function getTitle(): ?string
- {
- return $this->title;
- }
-
- public function setTitle(string $title): self
- {
- $this->title = $title;
-
- return $this;
- }
- }
|