diff options
Diffstat (limited to 'src/Concerns/CreatesRoutes.php')
| -rw-r--r-- | src/Concerns/CreatesRoutes.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/src/Concerns/CreatesRoutes.php b/src/Concerns/CreatesRoutes.php new file mode 100644 index 0000000..6a8f65b --- /dev/null +++ b/src/Concerns/CreatesRoutes.php @@ -0,0 +1,41 @@ +<?php + +declare(strict_types=1); + +namespace Lightscale\Router\Concerns; + +use Lightscale\Router\Enums\HttpMethod; +use Lightscale\Router\RouteDefinition; + +trait CreatesRoutes +{ + public function get(string $path, callable $handler): RouteDefinition + { + return $this->make(HttpMethod::Get, $path, $handler); + } + + public function post(string $path, callable $handler): RouteDefinition + { + return $this->make(HttpMethod::Post, $path, $handler); + } + + public function put(string $path, callable $handler): RouteDefinition + { + return $this->make(HttpMethod::Put, $path, $handler); + } + + public function patch(string $path, callable $handler): RouteDefinition + { + return $this->make(HttpMethod::Patch, $path, $handler); + } + + public function delete(string $path, callable $handler): RouteDefinition + { + return $this->make(HttpMethod::Delete, $path, $handler); + } + + public function any(string $path, callable $handler): RouteDefinition + { + return $this->make(HttpMethod::Any, $path, $handler); + } +} |
