summaryrefslogtreecommitdiff
path: root/src/Enums/HttpMethod.php
blob: 9b561a831bb6aeb9e376a7ad261c033916393e6e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

declare(strict_types=1);

namespace Lightscale\Router\Enums;

enum HttpMethod: string
{
    case Any = 'any';
    case Get = 'get';
    case Post = 'post';
    case Put = 'put';
    case Patch = 'patch';
    case Delete = 'delete';
}