Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Tests | 12 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 285 | public function __construct(\Illuminate\Contracts\Foundation\Application $application) |
|
26 | { |
||
27 | 285 | parent::__construct($application); |
|
28 | |||
29 | 285 | $this->register([ |
|
30 | 285 | 'save' => Form\Buttons\Save::class, |
|
31 | 285 | 'saveAndClose' => Form\Buttons\SaveAndClose::class, |
|
32 | 285 | 'saveAndCreate' => Form\Buttons\SaveAndCreate::class, |
|
33 | 285 | 'restore' => Form\Buttons\Restore::class, |
|
34 | 285 | 'destroy' => Form\Buttons\Destroy::class, |
|
35 | 285 | 'delete' => Form\Buttons\Delete::class, |
|
36 | 285 | 'cancel' => Form\Buttons\Cancel::class, |
|
37 | 285 | ]); |
|
38 | 285 | } |
|
39 | } |
||
40 |