Negotiation\Tests\EncodingNegotiatorTest::dataProviderForTestGetBest PHP Method

dataProviderForTestGetBest() public static method

public static dataProviderForTestGetBest ( )
    public static function dataProviderForTestGetBest()
    {
        return array(array('gzip;q=1.0, identity; q=0.5, *;q=0', array('identity'), 'identity'), array('gzip;q=0.5, identity; q=0.5, *;q=0.7', array('bzip', 'foo'), 'bzip'), array('gzip;q=0.7, identity; q=0.5, *;q=0.7', array('gzip', 'foo'), 'gzip'), array('gzip;q=0.7,identity', array('identity;q=0.5', 'gzip;q=0.9'), 'gzip;q=0.9'));
    }