You are here

HttpConfigRequestInterface.php in HTTP Client Manager 8.2

Same filename and directory in other branches
  1. 8 src/Entity/HttpConfigRequestInterface.php

File

src/Entity/HttpConfigRequestInterface.php
View source
<?php

namespace Drupal\http_client_manager\Entity;

use Drupal\Core\Config\Entity\ConfigEntityInterface;

/**
 * Provides an interface for defining Http Config Request entities.
 */
interface HttpConfigRequestInterface extends ConfigEntityInterface {

  /**
   * Executes configured Http Request.
   *
   * @return mixed
   *   The command response.
   */
  public function execute();

  /**
   * Get configured command parameters.
   *
   * @return array
   *   An array of parameters.
   */
  public function getParameters();

}

Interfaces

Namesort descending Description
HttpConfigRequestInterface Provides an interface for defining Http Config Request entities.