]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/SampleClass.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / SampleClass.php
1 <?php
2 class SampleClass
3 {
4     public $a;
5     protected $b;
6     protected $c;
7
8     public function __construct($a, $b, $c)
9     {
10         $this->a = $a;
11         $this->b = $b;
12         $this->c = $c;
13     }
14 }
15 ?>