10 lines
142 B
PHP
10 lines
142 B
PHP
<?php
|
|
abstract class Entity {
|
|
protected function __construct() {
|
|
|
|
}
|
|
|
|
abstract public function matches($term, $ldap);
|
|
}
|
|
?>
|