Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 4.0.x will end 8 May 2023 (12 months).
  • Bug fixes for security issues in 4.0.x will end 13 November 2023 (18 months).
  • PHP version: minimum PHP 7.3.0 Note: the minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is also supported.
   1  <?php
   2  
   3  namespace Psr\Http\Client;
   4  
   5  use Psr\Http\Message\RequestInterface;
   6  use Psr\Http\Message\ResponseInterface;
   7  
   8  interface ClientInterface
   9  {
  10      /**
  11       * Sends a PSR-7 request and returns a PSR-7 response.
  12       *
  13       * @param RequestInterface $request
  14       *
  15       * @return ResponseInterface
  16       *
  17       * @throws \Psr\Http\Client\ClientExceptionInterface If an error happens while processing the request.
  18       */
  19      public function sendRequest(RequestInterface $request): ResponseInterface;
  20  }