From 70ecd0b6792cfa8794a3a2bd5c60a9a394805f3a Mon Sep 17 00:00:00 2001 From: Aurimas Niekis Date: Wed, 13 Feb 2019 19:19:56 +0000 Subject: [PATCH] Added HttpFactoryProviderInterface --- src/HttpFactoryProviderInterface.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/HttpFactoryProviderInterface.php diff --git a/src/HttpFactoryProviderInterface.php b/src/HttpFactoryProviderInterface.php new file mode 100644 index 0000000..85abea0 --- /dev/null +++ b/src/HttpFactoryProviderInterface.php @@ -0,0 +1,15 @@ + + */ +interface HttpFactoryProviderInterface +{ + public function getHttpFactory(): HttpFactoryInterface; +}