dl/includes/LineInfoboard.php
2020-06-17 20:49:28 +02:00

19 lines
229 B
PHP

<?php
class LineInfoboard extends Infoboard {
public function title () {
throw new NotImplementedException();
}
public function display () {
throw new NotImplementedException();
}
}
?>