| 1 | <?php |
||
| 20 | trait StringFromTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * From. |
||
| 24 | * |
||
| 25 | * @var string|null |
||
| 26 | */ |
||
| 27 | protected $from; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the from. |
||
| 31 | * |
||
| 32 | * @return string|null Returns the from. |
||
| 33 | */ |
||
| 34 | public function getFrom(): ?string { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the from. |
||
| 40 | * |
||
| 41 | * @param string|null $from The from. |
||
| 42 | * @return self Returns this instance. |
||
| 43 | */ |
||
| 44 | public function setFrom(?string $from): self { |
||
| 48 | } |
||
| 49 |