| Total Complexity | 2 |
| Total Lines | 11 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php declare(strict_types=1); |
||
| 13 | class FlowTemplateConfigField extends JsonField |
||
| 14 | { |
||
| 15 | public function __construct(string $storageName, string $propertyName) |
||
| 16 | { |
||
| 17 | $this->storageName = $storageName; |
||
| 18 | parent::__construct($storageName, $propertyName); |
||
| 19 | } |
||
| 20 | |||
| 21 | protected function getSerializerClass(): string |
||
| 24 | } |
||
| 25 | } |
||
| 26 |