%PDF- %PDF-
| Direktori : /home1/lightco1/public_html/lightingrepublic.com.au/libraries/koowa/http/ |
| Current File : //home1/lightco1/public_html/lightingrepublic.com.au/libraries/koowa/http/request.php |
<?php
/**
* @version $Id: http.php 2876 2011-03-07 22:19:20Z johanjanssens $
* @package Koowa_Http
* @copyright Copyright (C) 2007 - 2012 Johan Janssens. All rights reserved.
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html>
* @link http://www.nooku.org
*/
/**
* HTTP Request class
*
* @author Johan Janssens <johan@nooku.org>
* @category Koowa
* @package Koowa_Http
*/
class KHttpRequest
{
// Methods
const GET = 'GET';
const POST = 'POST';
const PUT = 'PUT';
const DELETE = 'DELETE';
const HEAD = 'HEAD';
const OPTIONS = 'OPTIONS';
}