Current File : //opt/RZphp72/includes/test/PHP_UML/tests/suite/bug-489398.php |
<?php
/** @package PHP_UML::tests */
/** @package PHP_UML::tests */
class bug_489398
{
/**
* Checking the single quote var case
*/
var $test_01 = '$Id: bug-489398.php,v 1.1 2005/10/17 18:36:51 jeichorn Exp $';
/**
* checking the double quote var case
*/
var $test_02 = "Double quoted value";
/**
* Checking the no quote cause
*/
var $test_03 = false;
/**
* Checking the empty array case
*/
var $test_04 = array();
/**
* Checking the array with data case
*/
var $test_05 = array("test1","test2" => "value");
}
?>