Files
luos/thirdparty/html2ps_pdf/error.php
Paula Quispe 9eb7d6cac2 HOR-2689
2017-08-03 17:00:30 -04:00

9 lines
191 B
PHP

<?php
if (!function_exists('error_no_method')) {
function error_no_method($method, $class) {
die(sprintf("Error: unoverridden '%s' method called in '%s'", $method, $class));
}
};
?>