Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / 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 }