Conditions | 3 |
Paths | 4 |
Total Lines | 15 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3.072 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php declare(strict_types=1); |
||
25 | 1 | */ |
|
26 | protected $composer; |
||
27 | |||
28 | 1 | public function __construct(Framework $framework, FrameworkComposer $composer = null) |
|
29 | 1 | { |
|
30 | 1 | $this->framework = $framework; |
|
31 | $this->composer = $composer; |
||
32 | } |
||
33 | 1 | ||
34 | /** |
||
35 | 1 | * Renders a form editable version of this Element |
|
36 | 1 | * |
|
37 | * @param array $parameters |
||
38 | * @param HTMLNode $previous |
||
39 | 1 | * @return HTMLNode The HTML rendered. |
|
40 | */ |
||
50 |