We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 739863d commit 488b421Copy full SHA for 488b421
src/Message/MessageFactoryAware.php
@@ -0,0 +1,32 @@
1
+<?php
2
+
3
+/*
4
+ * This file is part of the Http Adapter package.
5
+ *
6
+ * (c) Eric GELOEN <geloen.eric@gmail.com>
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\Adapter\Message;
13
14
+/**
15
+ * @author Márk Sági-Kazár <mark.sagikazar@gmail.com>
16
17
+interface MessageFactoryAware
18
+{
19
+ /**
20
+ * Returns a Message Factory
21
22
+ * @return MessageFactory
23
24
+ public function getMessageFactory();
25
26
27
+ * Sets a Message Factory
28
29
+ * @param MessageFactory $messageFactory
30
31
+ public function setMessageFactory(MessageFactory $messageFactory);
32
+}
0 commit comments