lychee/php/Access/Access.php

11 lines
88 B
PHP
Raw Normal View History

2014-04-28 09:23:18 +00:00
<?php
namespace Lychee\Access;
2014-04-28 09:23:18 +00:00
interface Access {
2014-04-28 09:23:18 +00:00
public function check($fn);
2014-04-28 09:23:18 +00:00
}
?>