<?php class Router { private array $routes; public function __construct(array $routes) { $this->routes = $routes; } public function route(string $path): ?Route { foreach ($this->routes as $route) { if ($route->get('url') === $path) { $result = $route; } } //Не дописано if ($result) { return $result; } else { } } }
You have javascript disabled. You will not be able to edit any code.