Skip to content

Commit c8d8491

Browse files
authored
Merge pull request #41 from weierophinney/feature/remove-inheritance
Remove inheritance from all interfaces
2 parents 49c3000 + f039c82 commit c8d8491

File tree

4 files changed

+4
-9
lines changed

4 files changed

+4
-9
lines changed

src/RequestFactoryInterface.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
use Psr\Http\Message\RequestInterface;
66
use Psr\Http\Message\UriInterface;
77

8-
interface RequestFactoryInterface extends
9-
StreamFactoryInterface,
10-
UriFactoryInterface
8+
interface RequestFactoryInterface
119
{
1210
/**
1311
* Create a new request.

src/ResponseFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
use Psr\Http\Message\ResponseInterface;
66

7-
interface ResponseFactoryInterface extends StreamFactoryInterface
7+
interface ResponseFactoryInterface
88
{
99
/**
1010
* Create a new response.

src/ServerRequestFactoryInterface.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
use Psr\Http\Message\ServerRequestInterface;
66
use Psr\Http\Message\UriInterface;
77

8-
interface ServerRequestFactoryInterface extends
9-
StreamFactoryInterface,
10-
UploadedFileFactoryInterface,
11-
UriFactoryInterface
8+
interface ServerRequestFactoryInterface
129
{
1310
/**
1411
* Create a new server request.

src/UploadedFileFactoryInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
use Psr\Http\Message\StreamInterface;
66
use Psr\Http\Message\UploadedFileInterface;
77

8-
interface UploadedFileFactoryInterface extends StreamFactoryInterface
8+
interface UploadedFileFactoryInterface
99
{
1010
/**
1111
* Create a new uploaded file.

0 commit comments

Comments
 (0)