uiharu/src/ILookup.php

8 lines
129 B
PHP

<?php
namespace Uiharu;
interface ILookup {
function match(Url $url): bool;
function lookup(Url $url): ILookupResult;
}