From a950ac254a964a63d4eea3a3de0c8ed6d1b0470c Mon Sep 17 00:00:00 2001 From: Jonathan Prykop Date: Fri, 22 Jul 2016 17:09:01 -0500 Subject: [PATCH] RT#33286: Direct Debit by BillBuddy for Bank Accounts [default host] --- BillBuddy.pm | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/BillBuddy.pm b/BillBuddy.pm index 88207d2..de2131c 100644 --- a/BillBuddy.pm +++ b/BillBuddy.pm @@ -86,11 +86,17 @@ use Business::BatchPayment; use Moose; with 'Business::BatchPayment::Processor'; -our $VERSION = '0.01'; +our $VERSION = '0.02'; -has [ qw(username password host) ] => ( +has [ qw(username password) ] => ( + is => 'ro', + isa => 'Str', +); + +has 'host' => ( is => 'ro', isa => 'Str', + default => 'xmlrpc.billbuddy.com', ); has 'path' => ( -- 2.11.0