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