19 lines
		
	
	
		
			270 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			270 B
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
	
	
<?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';
 | 
						|
 | 
						|
} |