| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 10 | class FindReplaceProcess implements ProcessInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var string |
||
| 14 | */ |
||
| 15 | private $find; |
||
| 16 | /** |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | private $replace; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @param string $find |
||
| 23 | * @param string $replace |
||
| 24 | */ |
||
| 25 | public function __construct(string $find, string $replace) |
||
| 26 | { |
||
| 27 | $this->find = $find; |
||
| 28 | $this->replace = $replace; |
||
| 29 | } |
||
| 30 | |||
| 31 | public function run(File\FindReplace $findReplace): void |
||
| 34 | } |
||
| 35 | } |
||
| 36 |