| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 21 | public function configure(ArrayNodeDefinition $builder) |
||
| 22 | { |
||
| 23 | parent::configure($builder); |
||
| 24 | |||
| 25 | // Add extended options. |
||
| 26 | $builder-> |
||
| 27 | children()-> |
||
| 28 | scalarNode('ajax_timeout')-> |
||
| 29 | defaultValue(static::AJAX_TIMEOUT)-> |
||
| 30 | info(sprintf('Change the maximum time to wait for AJAX calls to complete. Defaults to %s seconds.', static::AJAX_TIMEOUT))-> |
||
| 31 | end(); |
||
| 32 | } |
||
| 33 | } |
||
| 34 |