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