11 lines
88 B
PHP
11 lines
88 B
PHP
<?php
|
|
|
|
namespace Lychee\Access;
|
|
|
|
interface Access {
|
|
|
|
public function check($fn);
|
|
|
|
}
|
|
|
|
?>
|