home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / bug-587733.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  435 b   |  29 lines

  1. <?php
  2. /**
  3. * inherited functions with @access private should not be shown in inherited list of child
  4. * @package tests
  5. */
  6. class parent_b587733
  7. {
  8. /**
  9. * displayed in inherited list?
  10. * @access private
  11. */
  12. var $v1;
  13. /**
  14. * displayed in inherited list?
  15. * @access private
  16. */
  17. function b1()
  18. {
  19.     global $doitwork;
  20. }
  21. }
  22. /**
  23. * @package tests
  24. */
  25. class kiddie_b587733 extends parent_b587733
  26. {
  27.     function kiddie_b587733() {}
  28. }
  29. ?>