Total Complexity | 1 |
Total Lines | 19 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
5 | class WalletConfigure |
||
6 | { |
||
7 | /** |
||
8 | * Indicates if Wallet migrations will be run. |
||
9 | * |
||
10 | * @var bool |
||
11 | */ |
||
12 | public static $runsMigrations = true; |
||
13 | |||
14 | /** |
||
15 | * Configure Wallet to not register its migrations. |
||
16 | * |
||
17 | * @return static |
||
18 | */ |
||
19 | public static function ignoreMigrations(): self |
||
26 |