2026-02-25 06:59:34 +00:00
|
|
|
<?php
|
|
|
|
|
/**
|
2026-02-27 00:03:00 +00:00
|
|
|
* @link https://www.yiiframework.com/
|
2026-02-25 06:59:34 +00:00
|
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
2026-02-27 00:03:00 +00:00
|
|
|
* @license https://www.yiiframework.com/license/
|
2026-02-25 06:59:34 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
namespace yii\web;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* ResponseFormatterInterface specifies the interface needed to format a response before it is sent out.
|
|
|
|
|
*
|
|
|
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
|
|
|
* @since 2.0
|
|
|
|
|
*/
|
|
|
|
|
interface ResponseFormatterInterface
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Formats the specified response.
|
|
|
|
|
* @param Response $response the response to be formatted.
|
|
|
|
|
*/
|
|
|
|
|
public function format($response);
|
|
|
|
|
}
|