index/src/Http/Content/IHttpContent.php

12 lines
167 B
PHP

<?php
// IHttpContent.php
// Created: 2022-02-08
// Updated: 2022-02-27
namespace Index\Http\Content;
use Stringable;
interface IHttpContent extends Stringable {
}