Router
Last updated
Was this helpful?
Was this helpful?
<?php
public function post($pattern, $callback, $middleware = []) {
$this->addRoute('POST', $pattern, $callback, $middleware);
}<?php
public function put($uri, $controller, $middleware = []) {
$this->addRoute('PUT', $uri, $controller, $middleware);
}<?php
public function delete($uri, $controller, $middleware = []) {
$this->addRoute('DELETE', $uri, $controller, $middleware);
}<?php
public function match($uri, $method) {}