Subversion-Projekte lars-tiefland.php_share

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<?php
/**
* tests variable names with the word 'array' in them
* @package tests
*/
/**
* tests variable names with the word 'array' in them
* @package tests
*/
class testarraybug
{
        var $arrayType = 'name should be arrayType';
        var $myarrayName = 'name should be myarrayName';
        /**
        * test with no default, should be arrayType1
        */
        var $arrayType1    ;
        /**
        * test with no default, should be myarrayName1
        */
        var $myarrayName1   ; 
}
?>