gephart/response

Gephart Response Component

0.4 2017-09-05 18:34 UTC

This package is auto-updated.

Last update: 2024-07-12 13:22:16 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();