]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/Struct.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / Struct.php
1 <?php
2 class Struct
3 {
4     public $var;
5
6     public function __construct($var)
7     {
8         $this->var = $var;
9     }
10 }
11 ?>