| Total Complexity | 2 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 8 | class ReplaceTypeHintsProcess implements ProcessInterface |
||
| 9 | { |
||
| 10 | /** |
||
| 11 | * @var CodeHelper |
||
| 12 | */ |
||
| 13 | private $codeHelper; |
||
| 14 | /** |
||
| 15 | * @var string |
||
| 16 | */ |
||
| 17 | private $mappingHelperType; |
||
| 18 | /** |
||
| 19 | * @var bool |
||
| 20 | */ |
||
| 21 | private $nullable; |
||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $phpType; |
||
| 26 | |||
| 27 | public function __construct(CodeHelper $codeHelper, string $phpType, string $mappingHelperType, $defaultValue) |
||
| 33 | } |
||
| 34 | |||
| 35 | public function run(File\FindReplace $findReplace): void |
||
| 48 |