24 lines
565 B
PHP
24 lines
565 B
PHP
<?php
|
|
|
|
namespace Core\Objects\Router;
|
|
|
|
class StaticRoute extends AbstractRoute {
|
|
|
|
private string $data;
|
|
private int $code;
|
|
|
|
public function __construct(string $pattern, bool $exact, string $data, int $code = 200) {
|
|
parent::__construct($pattern, $exact);
|
|
$this->data = $data;
|
|
$this->code = $code;
|
|
}
|
|
|
|
public function call(Router $router, array $params): string {
|
|
http_response_code($this->code);
|
|
return $this->data;
|
|
}
|
|
|
|
protected function getArgs(): array {
|
|
return array_merge(parent::getArgs(), [$this->data, $this->code]);
|
|
}
|
|
} |