summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php')
-rw-r--r--plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php b/plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php
deleted file mode 100644
index 212562f00..000000000
--- a/plugins/af_readability/vendor/psr/http-factory/src/ResponseFactoryInterface.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-
-namespace Psr\Http\Message;
-
-interface ResponseFactoryInterface
-{
- /**
- * Create a new response.
- *
- * @param int $code HTTP status code; defaults to 200
- * @param string $reasonPhrase Reason phrase to associate with status code
- * in generated response; if none is provided implementations MAY use
- * the defaults as suggested in the HTTP specification.
- *
- * @return ResponseInterface
- */
- public function createResponse(int $code = 200, string $reasonPhrase = ''): ResponseInterface;
-}