06c51c5107fb7ac73d5e01154f7707b792e90cfb
[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 }