| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | public function getOptions(ReflectionClass $xClass): ComponentOptions |
||
| 38 | { |
||
| 39 | $xConfigSetter = new ConfigSetter(); |
||
| 40 | $aOptions = [ |
||
| 41 | 'separator' => '.', |
||
| 42 | 'protected' => [], |
||
| 43 | 'functions' => [], |
||
| 44 | 'config' => $xConfigSetter->newConfig(['metadata' => ['format' => 'attributes']]), |
||
| 45 | ]; |
||
| 46 | return jaxon()->cdi()->getComponentOptions($xClass, $aOptions); |
||
| 47 | } |
||
| 49 |