yii\httpclient\debug\HttpClientPanel::getRequestType PHP Method

getRequestType() protected method

Returns request type.
protected getRequestType ( string $category ) : string
$category string
return string request type such as 'normal', 'batch'
    protected function getRequestType($category)
    {
        return stripos($category, '::batchSend') === false ? 'normal' : 'batch';
    }