1
0
mirror of https://github.com/flarum/core.git synced 2025-10-12 15:34:26 +02:00
Files
php-flarum/src/Http/UrlGeneratorInterface.php
Franz Liedke 9526dbf210 Create URL generator interface.
Also bind a default implementation to the container.
2015-05-27 23:58:43 +02:00

11 lines
158 B
PHP

<?php
namespace Flarum\Http;
interface UrlGeneratorInterface
{
public function toRoute($name, $parameters = []);
public function toAsset($path);
}