mirror of
https://github.com/LBRYFoundation/lbry.com.git
synced 2025-08-23 09:37:26 +00:00
25 lines
476 B
PHP
25 lines
476 B
PHP
<?php
|
|
|
|
namespace Routing;
|
|
|
|
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';
|
|
}
|