freenetis-github/application/vendors/phpax-rs/common/Annotations.php @ 6ba4ad2a
18ac9009 | Ondřej Fibich | <?php
|
|
/*
|
|||
* This file is a part of PHPAX-RS framework, released under terms of GPL-3.0
|
|||
* licence. Copyright (c) 2014, UnArt Slavičín, o.s. All rights reserved.
|
|||
*/
|
|||
namespace phpaxrs\common;
|
|||
/**
|
|||
* The "Annotations" class
|
|||
*
|
|||
* @author Ondřej Fibich <ondrej.fibich@gmail.com>
|
|||
*/
|
|||
class Annotations {
|
|||
const METHOD_GET = 'GET';
|
|||
const METHOD_POST = 'POST';
|
|||
const METHOD_PUT = 'PUT';
|
|||
const METHOD_DELETE = 'DELETE';
|
|||
const PRODUCE_MINES = 'Produces';
|
|||
const CONSUME_MINES = 'Consumes';
|
|||
const URL_PATH = 'Path';
|
|||
}
|