autoload_implements.inc 132 B

12345678910
  1. <?php
  2. class autoload_implements implements autoload_interface {
  3. function testFunction()
  4. {
  5. return true;
  6. }
  7. }
  8. ?>