Total Complexity | 2 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
7 | class FormEntryManager |
||
8 | { |
||
9 | /** |
||
10 | * Indicates if laravel should run migrations for package. |
||
11 | * |
||
12 | * @var bool |
||
13 | */ |
||
14 | public static bool $runsMigrations = true; |
||
15 | |||
16 | /** |
||
17 | * Configure laravel to not register current package migrations. |
||
18 | * |
||
19 | * @return static |
||
20 | */ |
||
21 | 1 | public static function ignoreMigrations(): static |
|
26 | } |
||
27 | |||
28 | 22 | public function routes(): static |
|
38 |