apimatic/core-interfaces-php

View on GitHub
src/Core/Format.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CoreInterfaces\Core;

interface Format
{
    public const JSON = 'application/json';
    public const XML = 'application/xml';
    public const SCALAR = 'text/plain; charset=utf-8';
}