Security update for Core, with self-updated composer
[yaffs-website] / vendor / consolidation / annotated-command / tests / src / TestTerminal.php
diff --git a/vendor/consolidation/annotated-command/tests/src/TestTerminal.php b/vendor/consolidation/annotated-command/tests/src/TestTerminal.php
new file mode 100644 (file)
index 0000000..cfcbf97
--- /dev/null
@@ -0,0 +1,22 @@
+<?php
+namespace Consolidation\TestUtils;
+
+class TestTerminal
+{
+    protected $width = 0;
+
+    public function __construct($width)
+    {
+        $this->width = $width;
+    }
+
+    public function getWidth()
+    {
+        return $this->width;
+    }
+
+    public function setWidth($width)
+    {
+        $this->width = $width;
+    }
+}