| Total Complexity | 1 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 24 | final class ArrayableConverter implements ConverterContract |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * Returns array representation of the object implementing Arrayable interface |
||
| 28 | * |
||
| 29 | * @param Arrayable $obj Object to be converted |
||
| 30 | * @param array $config Converter config array to be used for this object (based on exact class |
||
| 31 | 1 | * name match or inheritance). |
|
| 32 | * |
||
| 33 | 1 | * @return array |
|
| 34 | */ |
||
| 35 | 1 | public function convert(object $obj, /** @scrutinizer ignore-unused */ array $config): array |
|
| 42 |