| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 15 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 31 | private function addSendySection(ArrayNodeDefinition $node): void |
||
| 32 | { |
||
| 33 | $node |
||
| 34 | ->children() |
||
| 35 | ->scalarNode('api_key') |
||
| 36 | ->isRequired() |
||
| 37 | ->cannotBeEmpty() |
||
| 38 | ->end() |
||
| 39 | ->scalarNode('api_host') |
||
|
|
|||
| 40 | ->isRequired() |
||
| 41 | ->cannotBeEmpty() |
||
| 42 | ->end() |
||
| 43 | ->scalarNode('list_id') |
||
| 44 | ->isRequired() |
||
| 45 | ->cannotBeEmpty() |
||
| 46 | ->end() |
||
| 47 | ->end(); |
||
| 48 | } |
||
| 50 |