| 1 | <?php |
||
| 7 | class Replacer |
||
| 8 | { |
||
| 9 | /** @var string */ |
||
| 10 | private $key; |
||
| 11 | |||
| 12 | /** @var string */ |
||
| 13 | private $value; |
||
| 14 | |||
| 15 | public function __construct(string $key, callable $callback) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @return string |
||
| 27 | */ |
||
| 28 | public function getKey(): string |
||
| 32 | |||
| 33 | /** |
||
| 34 | * @return string |
||
| 35 | */ |
||
| 36 | public function getValue(): string |
||
| 40 | } |
||
| 41 |