7 lines
134 B
PHP
Executable File
7 lines
134 B
PHP
Executable File
<?php
|
|
class Parser {
|
|
function process(&$data) {
|
|
die("Oops! Unoverridden 'process' method called in ".get_class($this));
|
|
}
|
|
}
|
|
?>
|