We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
<?php error_reporting(E_ALL); ini_set('display_errors', '1'); require('/home/smspi/public_html/org/nameapi/client/services/ServiceFactory.php'); use org\nameapi\ontology\input\context\Context; use org\nameapi\ontology\input\context\Priority; use org\nameapi\ontology\input\context\TextCase; $context = Context::builder() ->apiKey('MYAPIKEY') ->priority(Priority::REALTIME) ->build(); $serviceFactory = new ServiceFactory($context); $deaDetector = $serviceFactory->emailServices()->disposableEmailAddressDetector(); $result = $deaDetector->isDisposable("[email protected]"); $dispose = $result->getDisposable()->toString(); echo $dispose; ?>
what am i doing wrong?
Fatal error: Undefined class constant 'REALTIME'
The text was updated successfully, but these errors were encountered:
Hello @txt3rob , I think that the problem is that:
->priority(Priority::REALTIME)
must be:
->priority(Priority::REALTIME())
Sorry, something went wrong.
No branches or pull requests
what am i doing wrong?
Fatal error: Undefined class constant 'REALTIME'
The text was updated successfully, but these errors were encountered: