Yaffs site version 1.1
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / SampleClass.php
diff --git a/vendor/phpunit/phpunit/tests/_files/SampleClass.php b/vendor/phpunit/phpunit/tests/_files/SampleClass.php
new file mode 100644 (file)
index 0000000..06c51c5
--- /dev/null
@@ -0,0 +1,14 @@
+<?php
+class SampleClass
+{
+    public $a;
+    protected $b;
+    protected $c;
+
+    public function __construct($a, $b, $c)
+    {
+        $this->a = $a;
+        $this->b = $b;
+        $this->c = $c;
+    }
+}