Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 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
?>