Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
52 | public function render(array $fields, array $attributes, array $blocks): void |
||
53 | { |
||
54 | $globalVariables = compact('fields', 'attributes', 'blocks'); |
||
55 | $localVariables = $this->with($fields); |
||
|
|||
56 | |||
57 | $data = array_merge($globalVariables, $localVariables); |
||
58 | |||
59 | echo static::capture($this->template(), $data); |
||
60 | } |
||
81 |