Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/** @package tests */
3
/**  testie */
4
define("testie",1);
5
 
6
/**
7
* @access private
8
*/
9
define('testoe2',2);
10
 
11
function func()
12
{
13
}
14
 
15
/**
16
* @access private
17
*/
18
function funie()
19
{
20
}
21
 
22
/** @package tests */
23
class ctest
24
{
25
	var $t1;
26
	/** @access private */
27
	var $t2;
28
	var $t3;
29
	function ctest()
30
	{
31
	}
32
 
33
	/** @access private */
34
	function atest()
35
	{
36
	}
37
 
38
	function btest()
39
	{
40
	}
41
}
42
 
43
/** @package tests */
44
class priv1{}
45
 
46
/** @access private */
47
class priv extends priv1
48
{
49
	var $privvar;
50
 
51
	function privfunction()
52
	{
53
	}
54
}
55
 
56
/** what happens here?  testing bug 564135
57
 * @package tests */
58
class childofpriv extends priv
59
{
60
}
61
?>