| 1 | <?php |
||
| 20 | trait StringFormatTrait { |
||
| 21 | |||
| 22 | /** |
||
| 23 | * Format. |
||
| 24 | * |
||
| 25 | * @var string |
||
| 26 | */ |
||
| 27 | private $format; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get the format. |
||
| 31 | * |
||
| 32 | * @return string Returns the format. |
||
| 33 | */ |
||
| 34 | public function getFormat() { |
||
| 37 | |||
| 38 | /** |
||
| 39 | * Set the format. |
||
| 40 | * |
||
| 41 | * @param string $format The format. |
||
| 42 | */ |
||
| 43 | public function setFormat($format) { |
||
| 47 | } |