Updated Drupal to 8.6. This goes with the following updates because it's possible...
[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
deleted file mode 100644 (file)
index cfcbf97..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-<?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;
-    }
-}