Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x

FactoryResolverInterface.php

Namespace

OpenTelemetry\SDK\Common\Http\Psr\Message

File

vendor/open-telemetry/sdk/Common/Http/Psr/Message/FactoryResolverInterface.php

View source
<?php

declare (strict_types=1);
namespace OpenTelemetry\SDK\Common\Http\Psr\Message;

use Psr\Http\Message\RequestFactoryInterface;
use Psr\Http\Message\ResponseFactoryInterface;
use Psr\Http\Message\ServerRequestFactoryInterface;
use Psr\Http\Message\StreamFactoryInterface;
use Psr\Http\Message\UploadedFileFactoryInterface;
use Psr\Http\Message\UriFactoryInterface;
interface FactoryResolverInterface {
    public function resolveRequestFactory() : RequestFactoryInterface;
    public function resolveResponseFactory() : ResponseFactoryInterface;
    public function resolveServerRequestFactory() : ServerRequestFactoryInterface;
    public function resolveStreamFactory() : StreamFactoryInterface;
    public function resolveUploadedFileFactory() : UploadedFileFactoryInterface;
    public function resolveUriFactory() : UriFactoryInterface;

}

Interfaces

Title Deprecated Summary
FactoryResolverInterface

API Navigation

  • Drupal Core 11.1.x
  • Topics
  • Classes
  • Functions
  • Constants
  • Globals
  • Files
  • Namespaces
  • Deprecated
  • Services
RSS feed
Powered by Drupal