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

  1. <?php
  2. /**
  3. * @package tests
  4. */
  5. /**
  6. * tests linking to methods and vars
  7. */
  8. class a{
  9. var $a;
  10. function b(){}
  11. var $c;
  12. }
  13.  
  14. /**
  15. * test links to methods and vars
  16. *
  17. * @see a::$a
  18. * @see a::d()
  19. */
  20. function a(){}
  21. ?>
  22.