1 | <?php |
||
18 | class ConfigurableFormatter implements FormatInterface |
||
19 | { |
||
20 | /** |
||
21 | * @var string |
||
22 | */ |
||
23 | private $delimiter; |
||
24 | |||
25 | 11 | public function __construct(string $delimiter) |
|
29 | |||
30 | /** |
||
31 | * {@inheritdoc} |
||
32 | */ |
||
33 | 6 | public function split($word) |
|
37 | |||
38 | /** |
||
39 | * {@inheritdoc} |
||
40 | */ |
||
41 | 8 | public function join(array $words) |
|
48 | } |
||
49 |