Access.php 88 B

1234567891011
  1. <?php
  2. namespace Lychee\Access;
  3. interface Access {
  4. public function check($fn);
  5. }
  6. ?>