gephart/response

Gephart Response Component

0.4 2017-09-05 18:34 UTC

This package is not auto-updated.

Last update: 2024-04-22 05:43:34 UTC


README

Build Status

Dependencies

  • PHP >= 7.1

Instalation

composer require gephart/response

Basic using

/index.php

<?php

$content = "<body>Content</body>";

$respose = new \Gephart\Response\Response($content);
$respose->render();