registerRoutes([ new Route('GET', 'products', ['ProductList\View\Product', 'listAll']), new Route('GET', 'add-product', function() { readfile('add-product.html'); }), new Route('GET', '', function() { readfile('index.html'); }), ]); $handler->handle();