Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / drush / drush / src / SiteAlias / Util / InternalYamlDataFileLoader.php
diff --git a/vendor/drush/drush/src/SiteAlias/Util/InternalYamlDataFileLoader.php b/vendor/drush/drush/src/SiteAlias/Util/InternalYamlDataFileLoader.php
new file mode 100644 (file)
index 0000000..be139be
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+namespace Drush\SiteAlias\Util;
+
+use Drush\Internal\Config\Yaml\Yaml;
+use Consolidation\SiteAlias\DataFileLoaderInterface;
+
+class InternalYamlDataFileLoader implements DataFileLoaderInterface
+{
+    /**
+     * @inheritdoc
+     */
+    public function load($path)
+    {
+        return (array) Yaml::parse(file_get_contents($path));
+    }
+}