diff --git a/src/Config/FastRoute.php b/src/Config/FastRoute.php index 9435197..f3f310d 100644 --- a/src/Config/FastRoute.php +++ b/src/Config/FastRoute.php @@ -12,7 +12,7 @@ class FastRoute extends SingleValueDirectiveGroup const PUT = 4; const DELETE = 8; const PATCH = 16; - const RESTFUL = self::GET | self::POST | self::PUT | self::DELETE; + const RESTFUL = self::GET | self::POST | self::PUT | self::PATCH | self::DELETE; /** * FastRoute constructor. @@ -55,4 +55,4 @@ protected function extractMethods(int $flag) return $methods; } -} \ No newline at end of file +}