Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / config / tests / src / ApplyConfigTestTarget.php
diff --git a/vendor/consolidation/config/tests/src/ApplyConfigTestTarget.php b/vendor/consolidation/config/tests/src/ApplyConfigTestTarget.php
deleted file mode 100644 (file)
index 6dace2b..0000000
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-
-namespace Consolidation\TestUtils;
-
-class ApplyConfigTestTarget
-{
-    protected $dir;
-    protected $value;
-
-    /**
-     * A proper setter for the 'dir' property
-     */
-    public function dir($dir)
-    {
-        $this->dir = $dir;
-        return $this;
-    }
-
-    /**
-     * A getter for the 'dir' property that we will use to
-     * determine if the setter was called.
-     */
-    public function getDir()
-    {
-        return $this->dir;
-    }
-
-    /**
-     * A bad setter that does not return $this.
-     */
-    public function bad($value)
-    {
-        $this->value = $value;
-    }
-
-    /**
-     * A getter for the bad setter.
-     */
-    public function getBad()
-    {
-        return $this->value;
-    }
-}