Total Complexity | 3 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class FileModifier extends AbstractModifier |
||
9 | { |
||
10 | /** |
||
11 | * @param FileInterface $component |
||
12 | * @param array $context |
||
13 | * @return object|void |
||
14 | */ |
||
15 | public function process($component, array $context = array()) |
||
21 | } |
||
22 | |||
23 | public function supportsData($data): bool |
||
24 | { |
||
25 | return $data instanceof FileInterface; |
||
26 | } |
||
27 | |||
28 | public static function getSubscribedServices(): array |
||
32 | ]; |
||
33 | } |
||
35 |