mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
11 lines
132 B
PHP
11 lines
132 B
PHP
<?php
|
|
|
|
class autoload_implements implements autoload_interface {
|
|
function testFunction()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
?>
|