19 lines
229 B
PHP
19 lines
229 B
PHP
|
<?php
|
||
|
|
||
|
class LineInfoboard extends Infoboard {
|
||
|
|
||
|
public function title () {
|
||
|
|
||
|
throw new NotImplementedException();
|
||
|
|
||
|
}
|
||
|
|
||
|
public function display () {
|
||
|
|
||
|
throw new NotImplementedException();
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
?>
|