Core MVC, HTTP client, Session, Cookie, Config, HTTPException — 111 PHPUnit tests. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
18 lines
366 B
PHP
18 lines
366 B
PHP
<?php
|
|
/**
|
|
* @package Bicycle
|
|
* @author Egor Isaev
|
|
* @description HTTP/Message.php
|
|
* @copyright (c) 04/06/2026
|
|
*/
|
|
|
|
namespace System\Classes\HTTP;
|
|
|
|
interface Message
|
|
{
|
|
public function protocol($protocol = null);
|
|
public function headers($key = null, $value = null);
|
|
public function body($content = null);
|
|
public function render();
|
|
}
|