summaryrefslogtreecommitdiff
path: root/vendor/open-telemetry/sdk/Common/Http/Psr/Message/MessageFactoryInterface.php
blob: 97258491f1801bbc5b27fedc77d914c5dd8a429c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?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;

interface MessageFactoryInterface extends RequestFactoryInterface, ServerRequestFactoryInterface, ResponseFactoryInterface
{
}