lychee/php/access/Access.php

11 lines
88 B
PHP

<?php
namespace Lychee\Access;
interface Access {
public function check($fn);
}
?>