for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bavix\Wallet;
class Wallet
{
/**
* 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()
static::$runsMigrations = false;
return new static;
}