Skip to content
This repository was archived by the owner on May 13, 2023. It is now read-only.

Commit 88b5823

Browse files
committed
Adds ClientFactory
1 parent 4182d59 commit 88b5823

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

src/ClientFactory.php

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?php
2+
3+
/*
4+
* This file is part of the Http Message Factory package.
5+
*
6+
* (c) PHP HTTP Team
7+
*
8+
* For the full copyright and license information, please read the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
namespace Http\Message;
13+
14+
use Psr\Http\Message\UriInterface;
15+
16+
/**
17+
* All the factory components that could be used in client context (like an HTTP Client)
18+
*
19+
* @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
20+
*/
21+
interface ClientFactory extends MessageFactory, StreamFactory, UriFactory
22+
{
23+
24+
}

0 commit comments

Comments
 (0)