<?php class Route { use Getter; private string $url; private string $controllerName; public function __construct(string $url, string $controllerName) { $this->url = $url; $this->controllerName = $controllerName; } }
You have javascript disabled. You will not be able to edit any code.