Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class PeriodicNoticeManager |
||
6 | { |
||
7 | /** |
||
8 | * Indicates if laravel should run migrations for package. |
||
9 | * |
||
10 | * @var bool |
||
11 | */ |
||
12 | public static bool $runsMigrations = true; |
||
13 | |||
14 | /** |
||
15 | * Configure laravel to not register current package migrations. |
||
16 | * |
||
17 | * @return static |
||
18 | */ |
||
19 | 1 | public static function ignoreMigrations(): static |
|
26 |