| Total Complexity | 2 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | trait MagicCallForwarding |
||
| 11 | { |
||
| 12 | /** |
||
| 13 | * Forward call to the inner element builder |
||
| 14 | * |
||
| 15 | * @param string $name |
||
| 16 | * @param array $arguments |
||
| 17 | * |
||
| 18 | * @return $this|mixed |
||
| 19 | */ |
||
| 20 | 97 | final public function __call(string $name, array $arguments) |
|
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Get the inner element builder |
||
| 30 | * |
||
| 31 | * @return ElementBuilderInterface |
||
| 32 | */ |
||
| 33 | abstract protected function getElementBuilder(): ElementBuilderInterface; |
||
| 34 | } |
||
| 35 |