/**
  * @param string $apiKey The API key from WebPurify to verify content
  */
 public function __construct($apiKey)
 {
     parent::__construct($apiKey);
     // Use the US endpoint
     $this->setEndPointDomain(static::END_POINT_DOMAIN_UNITED_STATES);
 }
 /**
  * @param string $apiKey The API key from WebPurify to verify content
  */
 public function __construct($apiKey)
 {
     parent::__construct($apiKey);
     // Use the image API endpoint
     $this->setEndPointDomain(static::END_POINT_DOMAIN_IMAGES);
 }