| Total Complexity | 3 |
| Total Lines | 21 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class Traits implements TraitsInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var ArrayOperation\MergeInterface |
||
| 21 | */ |
||
| 22 | private $mergeOperation; |
||
| 23 | |||
| 24 | 1 | public function __construct(ArrayOperation\MergeInterface $mergeOperation) |
|
| 25 | { |
||
| 26 | 1 | $this->mergeOperation = $mergeOperation; |
|
| 27 | 1 | } |
|
| 28 | |||
| 29 | 2 | public function execute(string $class): array |
|
| 38 | } |
||
| 39 | } |
||
| 40 |