You are here

ClientServiceInterface.php in Sparkpost email 8

Same filename and directory in other branches
  1. 8.2 src/ClientServiceInterface.php

Namespace

Drupal\sparkpost

File

src/ClientServiceInterface.php
View source
<?php

namespace Drupal\sparkpost;


/**
 * Interface ClientServiceInterface.
 *
 * @package Drupal\sparkpost
 */
interface ClientServiceInterface {
  public function getClient();
  public function sendMessage(array $message);
  public function sendRequest($endpoint, array $data, $method = 'GET');

}

Interfaces

Namesort descending Description
ClientServiceInterface Interface ClientServiceInterface.