mirror of
https://github.com/flarum/core.git
synced 2025-10-12 15:34:26 +02:00
11 lines
158 B
PHP
11 lines
158 B
PHP
<?php
|
|
|
|
namespace Flarum\Http;
|
|
|
|
interface UrlGeneratorInterface
|
|
{
|
|
public function toRoute($name, $parameters = []);
|
|
|
|
public function toAsset($path);
|
|
}
|