1 | <?php |
||
9 | class RegexReplaceStringModifier implements StringModifierInterface |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $from; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $to; |
||
21 | |||
22 | |||
23 | 1 | public function __construct(string $from, string $to) |
|
28 | |||
29 | |||
30 | 1 | public function modify(string $input): string |
|
38 | } |
||
39 |