opsdash-app/opsdash/tests/php/stubs/OCP/IURLGenerator.php
2026-05-14 13:48:45 +07:00

9 lines
158 B
PHP

<?php
declare(strict_types=1);
namespace OCP;
interface IURLGenerator {
public function linkToRouteAbsolute(string $route, array $params = []): string;
}