| Total Complexity | 2 |
| Total Lines | 14 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class GenericExtensionInput extends AbstractExtensionInput |
||
| 8 | { |
||
| 9 | public function __construct(string $identifier, $input = null) |
||
| 10 | { |
||
| 11 | parent::__construct($identifier); |
||
| 12 | $this->input = $input; |
||
| 13 | } |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @param mixed $input |
||
| 17 | */ |
||
| 18 | public function setInput($input): void |
||
| 21 | } |
||
| 22 | } |
||
| 23 |