34 lines
472 B
PHP
34 lines
472 B
PHP
<?php namespace Phroute\Phroute;
|
|
|
|
class Route {
|
|
|
|
/**
|
|
* Constants for before and after filters
|
|
*/
|
|
const BEFORE = 'before';
|
|
|
|
const AFTER = 'after';
|
|
|
|
const PREFIX = 'prefix';
|
|
|
|
/**
|
|
* Constants for common HTTP methods
|
|
*/
|
|
const ANY = 'ANY';
|
|
|
|
const GET = 'GET';
|
|
|
|
const HEAD = 'HEAD';
|
|
|
|
const POST = 'POST';
|
|
|
|
const PUT = 'PUT';
|
|
|
|
const PATCH = 'PATCH';
|
|
|
|
const DELETE = 'DELETE';
|
|
|
|
const OPTIONS = 'OPTIONS';
|
|
}
|
|
|