|
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
-
- namespace Lc\ShopBundle\Model;
-
- use Doctrine\ORM\Mapping as ORM;
-
-
- abstract class TaxRate extends AbstractEntity
- {
-
-
-
- protected $title;
-
-
-
- protected $value;
-
-
- public function __toString()
- {
- return $this->getTitle() ;
- }
-
- public function getTitle(): ?string
- {
- return $this->title;
- }
-
- public function setTitle(string $title): self
- {
- $this->title = $title;
-
- return $this;
- }
-
- public function getValue(): ?float
- {
- return $this->value;
- }
-
- public function setValue(float $value): self
- {
- $this->value = $value;
-
- return $this;
- }
- }
|