| 123456789101112131415161718192021222324 |
- <?php
- /**
- * @link http://www.yiiframework.com/
- * @copyright Copyright (c) 2008 Yii Software LLC
- * @license http://www.yiiframework.com/license/
- */
- namespace yii\httpclient;
- /**
- * FormatterInterface represents HTTP request message formatter.
- *
- * @author Paul Klimov <klimov.paul@gmail.com>
- * @since 2.0
- */
- interface FormatterInterface
- {
- /**
- * Formats given HTTP request message.
- * @param Request $request HTTP request instance.
- * @return Request formatted request.
- */
- public function format(Request $request);
- }
|