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