1 | <?php |
||
16 | trait FormatTrait |
||
17 | { |
||
18 | /** |
||
19 | * @var array |
||
20 | */ |
||
21 | private $format = []; |
||
22 | |||
23 | /** |
||
24 | * Set format values |
||
25 | * |
||
26 | * @param array $format |
||
27 | * @return $this |
||
28 | */ |
||
29 | public function format(array $format) |
||
34 | |||
35 | /** |
||
36 | * @param string $str |
||
37 | * @return string |
||
38 | */ |
||
39 | protected function doFormat($str) |
||
43 | } |
||
44 |