1
0
mirror of https://github.com/php/php-src.git synced 2026-04-07 16:13:32 +02:00
Files
archived-php-src/tests/classes/autoload_implements.p5c
2004-09-26 18:16:33 +00:00

10 lines
116 B
Plaintext
Executable File

<?php
class autoload_implements implements autoload_interface {
function testFunction()
{
return true;
}
}
?>