php-src/tests/classes/autoload_root.inc
Peter Kokot 5da3ed69a6 Rename *.p5c files to *.inc
When including files in PHP tests a good practice so far has been to use
the *.inc extension. This patch renames few *.p5c files that are
included in phpt files.
2018-09-21 23:21:14 +02:00

11 lines
81 B
PHP

<?php
class autoload_root {
function testFunction()
{
return true;
}
}
?>