| Total Complexity | 6 |
| Total Lines | 43 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class PathNormalizerComponent implements \Vaimo\ComposerPatches\Interfaces\DefinitionListLoaderComponentInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var \Vaimo\ComposerPatches\Package\InfoResolver |
||
| 14 | */ |
||
| 15 | private $packageInfoResolver; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param \Vaimo\ComposerPatches\Package\InfoResolver $packageInfoResolver |
||
| 19 | */ |
||
| 20 | public function __construct( |
||
| 21 | \Vaimo\ComposerPatches\Package\InfoResolver $packageInfoResolver |
||
| 22 | ) { |
||
| 23 | $this->packageInfoResolver = $packageInfoResolver; |
||
| 24 | } |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @param array $patches |
||
| 28 | * @param \Composer\Package\PackageInterface[] $packagesByName |
||
| 29 | * @return array |
||
| 30 | */ |
||
| 31 | public function process(array $patches, array $packagesByName) |
||
| 53 | } |
||
| 54 | } |
||
| 55 |