| Total Complexity | 5 |
| Total Lines | 31 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 10 | class AggregateThemeUnserializer implements ThemeUnserializerInterface |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * @var ThemeUnserializerInterface[] |
||
| 14 | */ |
||
| 15 | private $unserializers; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @param ThemeUnserializerInterface[] $unserializers |
||
| 19 | */ |
||
| 20 | public function __construct(array $unserializers = []) |
||
| 23 | } |
||
| 24 | |||
| 25 | public function addUnserializer(string $type, ThemeUnserializerInterface $unserializer) : void |
||
| 28 | } |
||
| 29 | |||
| 30 | public function createFromArray(array $arr): ThemeDescriptorInterface |
||
| 41 | } |
||
| 42 | } |