Total Complexity | 3 |
Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
11 | class GenericExtension extends AbstractExtension |
||
12 | { |
||
13 | public function __construct(string $identifier, array $supportedOperations) |
||
14 | { |
||
15 | parent::__construct($identifier, $supportedOperations); |
||
16 | } |
||
17 | |||
18 | public function parseResponse(ExtensionResponseInterface $extensionResponse): ExtensionOutputInterface |
||
19 | { |
||
20 | return new GenericExtensionOutput($extensionResponse); |
||
21 | } |
||
22 | |||
23 | public function processExtension(ExtensionInputInterface $input, ExtensionOutputInterface $output, ExtensionProcessingContext $context): void |
||
25 | // No action |
||
26 | } |
||
27 | } |
||
28 |