@@ -49,11 +49,11 @@ public function __call($name, array $args)
49
49
50
50
if ( in_array ($ name , $ this ->withdrawal_methods ) )
51
51
{ // it is a withdrawal method, let's do the client side signing bit
52
- $ response = $ this ->_withdraw ($ name , $ args );
52
+ $ response = $ this ->_internal_withdraw ($ name , $ args );
53
53
}
54
54
elseif (in_array ($ name , $ this ->sweep_methods ))
55
55
{ // it is a sweep method
56
- $ response = $ this ->_sweep ($ name , $ args );
56
+ $ response = $ this ->_internal_sweep ($ name , $ args );
57
57
}
58
58
else
59
59
{ // it is not a withdrawal method, let it go to Block.io
@@ -127,7 +127,7 @@ private function _request($path, $args = array(), $method = 'POST')
127
127
}
128
128
129
129
130
- private function _withdraw ($ name , $ args = array ())
130
+ private function _internal_withdraw ($ name , $ args = array ())
131
131
{ // withdraw method to be called by __call
132
132
133
133
unset ($ args ['pin ' ]); // make sure no inadvertent passing of pin occurs
@@ -184,7 +184,7 @@ private function _withdraw($name, $args = array())
184
184
return $ response ;
185
185
}
186
186
187
- private function _sweep ($ name , $ args = array ())
187
+ private function _internal_sweep ($ name , $ args = array ())
188
188
{ // sweep method to be called by __call
189
189
190
190
$ key = $ this ->initKey ()->fromWif ($ args ['private_key ' ]);
0 commit comments