boka3/include/Entity.php
2024-02-27 13:59:59 +01:00

9 lines
133 B
PHP

<?php
abstract class Entity {
protected function __construct() {
}
abstract public function matches($term, $ldap);
}
?>