for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Wallet;
/**
* Class WalletConfigure
* @package Bavix\Wallet
* @codeCoverageIgnore
*/
class WalletConfigure
{
* Indicates if Wallet migrations will be run.
*
* @var bool
public static $runsMigrations = true;
* Configure Wallet to not register its migrations.
* @return static
public static function ignoreMigrations(): self
static::$runsMigrations = false;
return new static;
}