Files
luos/gulliver/thirdparty/html2ps_pdf/parser._interface.class.php

7 lines
134 B
PHP
Executable File

<?php
class Parser {
function process(&$data) {
die("Oops! Unoverridden 'process' method called in ".get_class($this));
}
}
?>