boka3/include/Entity.php
2021-09-15 15:53:52 +02:00

10 lines
142 B
PHP

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