Subversion-Projekte lars-tiefland.php_share

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
/**
3
* tests variable names with the word 'array' in them
4
* @package tests
5
*/
6
/**
7
* tests variable names with the word 'array' in them
8
* @package tests
9
*/
10
class testarraybug
11
{
12
	var $arrayType = 'name should be arrayType';
13
	var $myarrayName = 'name should be myarrayName';
14
	/**
15
	* test with no default, should be arrayType1
16
	*/
17
	var $arrayType1    ;
18
	/**
19
	* test with no default, should be myarrayName1
20
	*/
21
	var $myarrayName1   ;
22
}
23
?>