You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Actually, after looking at the Base.php I see that $datObject->data->domain passed to Fastlookup->send is similar to the undefined $this->getDomain(). So In order to test it I changed it in Fastlookup->send
public function send($datObject, $tlds = array())
{
$result = $this->checkDomainBunch($datObject->data->domain, $tlds);
I also needed to change $_formatHolder to protected(from private) in the child FastDomainLookup.php otherwise it throws an error. Anyway I didn't find another way to fix it. Seems to me that it was never working by looking at the commit history.
In opensrs\opensrs\FastLookup.php on line 131 there is a call to $this->getDomain(), which is not defined. It is defined in opensrs/Base.php
The text was updated successfully, but these errors were encountered: