1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php
/**
* @author @jenschude <jens.schulze@commercetools.de>
* @created: 23.01.15, 17:17
*/
namespace Commercetools\Core\Client;
/**
* @package Commercetools\Core\Http
*/
class HttpMethod
{
const GET = 'GET';
const POST = 'POST';
const DELETE = 'DELETE';
const HEAD = 'HEAD';
}