Airship\Engine\LedgerStorage\DBStore::__construct PHP Method

__construct() public method

DBStore constructor.
public __construct ( DBInterface $db = null, string $table = self::DEFAULT_TABLE )
$db DBInterface
$table string
    public function __construct(DBInterface $db = null, string $table = self::DEFAULT_TABLE)
    {
        $this->db = $db ?? \Airship\get_database();
        if (empty($table)) {
            $table = self::DEFAULT_TABLE;
        }
        $this->table = $table;
    }