for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace nebula\request\header;
/**
* HTTP请求头
*
*/
class ContentTypeItem extends HeaderItem
{
public static $type = 'content-type';
public function isJson(): bool {
return strpos($this->value, 'json') !== false;
}