ImboUnitTest\Http\ContentNegotiationTest::getIsAcceptableData PHP Method

getIsAcceptableData() public method

public getIsAcceptableData ( ) : array[]
return array[]
    public function getIsAcceptableData()
    {
        return [['image/png', ['image/png' => 1, 'image/*' => 0.9], 1], ['image/png', ['text/html' => 1, '*/*' => 0.9], 0.9], ['image/png', ['text/html' => 1], false], ['image/jpeg', ['application/json' => 1, 'text/*' => 0.9], false], ['application/json', ['text/html;level=1' => 1, 'text/html' => 0.9, '*/*' => 0.8, 'text/html;level=2' => 0.7, 'text/*' => 0.9], 0.8]];
    }