Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / config / tests / src / TestLoader.php
diff --git a/vendor/consolidation/config/tests/src/TestLoader.php b/vendor/consolidation/config/tests/src/TestLoader.php
deleted file mode 100644 (file)
index 241e512..0000000
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-namespace Consolidation\TestUtils;
-
-use Consolidation\Config\Loader\ConfigLoaderInterface;
-
-class TestLoader implements ConfigLoaderInterface
-{
-    protected $data;
-    protected $sourceName;
-
-    public function set($data)
-    {
-        $this->data = $data;
-    }
-
-    public function setSourceName($name)
-    {
-        $this->sourceName = $name;
-    }
-
-    public function export()
-    {
-        return $this->data;
-    }
-
-    public function keys()
-    {
-        return array_keys($this->data);
-    }
-
-    public function getSourceName()
-    {
-        return $this->sourceName;
-    }
-}