This commit is contained in:
2024-07-29 15:57:20 +03:00
parent 95f56a04d3
commit 200763725e
34 changed files with 936 additions and 72 deletions

19
kernel/ResponseType.php Executable file
View File

@ -0,0 +1,19 @@
<?php
/**
* Created by PhpStorm.
* User: kirill
* Date: 15.06.19
* Time: 0:44
*/
namespace kernel;
class ResponseType
{
const TEXT_HTML = 'text/html';
const APPLICATION_JSON = 'application/json';
const MULTIPART_FORM_DATA = 'multipart/form-data';
}