Neos\Flow\Tests\Unit\Http\RequestTest::acceptHeaderValuesAndCorrespondingListOfMediaTypes PHP Method

acceptHeaderValuesAndCorrespondingListOfMediaTypes() public method

Data Provider
    public function acceptHeaderValuesAndCorrespondingListOfMediaTypes()
    {
        return [[null, ['*/*']], ['', ['*/*']], ['text/html', ['text/html']], ['application/json; q=0.5, application/json; charset=UTF-8', ['application/json; charset=UTF-8', 'application/json']], ['audio/*; q=0.2, audio/basic', ['audio/basic', 'audio/*']], ['text/plain; q=0.5, text/html, text/x-dvi; q=0.8, text/x-c', ['text/html', 'text/x-c', 'text/x-dvi', 'text/plain']], ['text/*, text/html, text/html;level=1, */*', ['text/html;level=1', 'text/html', 'text/*', '*/*']], ['text/html;level=1, text/*, text/html, text/html;level=2, */*', ['text/html;level=1', 'text/html;level=2', 'text/html', 'text/*', '*/*']]];
    }
RequestTest