| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 285 | public function __construct(\Illuminate\Contracts\Foundation\Application $application) |
|
| 23 | { |
||
| 24 | 285 | parent::__construct($application); |
|
| 25 | |||
| 26 | 285 | $this->register([ |
|
| 27 | 285 | 'form' => Form\FormDefault::class, |
|
| 28 | 285 | 'elements' => Form\FormElements::class, |
|
| 29 | 285 | 'tabbed' => Form\FormTabbed::class, |
|
| 30 | 285 | 'panel' => Form\FormPanel::class, |
|
| 31 | 285 | ]); |
|
| 32 | 285 | } |
|
| 33 | } |
||
| 34 |