for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mvc\core;
class Application
{
public Router $router;
public Request $request;
public Response $response;
public function __construct()
$this->request = new Request();
$this->response = new Response();
$this->router = new Router($this->request, $this->response);
}
public function run()
echo $this->router->resolve();