Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / site-alias / tests / src / FixtureFactory.php
diff --git a/vendor/consolidation/site-alias/tests/src/FixtureFactory.php b/vendor/consolidation/site-alias/tests/src/FixtureFactory.php
new file mode 100644 (file)
index 0000000..9421bac
--- /dev/null
@@ -0,0 +1,24 @@
+<?php
+namespace Consolidation\SiteAlias;
+
+use \Drush\Config\Environment;
+
+trait FixtureFactory
+{
+    protected function fixturesDir()
+    {
+        return dirname(__DIR__) . '/fixtures';
+    }
+
+    protected function homeDir()
+    {
+        return $this->fixturesDir() . '/home';
+    }
+
+    // It is still an aspirational goal to add Drupal 7 support back to Drush. :P
+    // For now, only Drupal 8 is supported.
+    protected function siteDir($majorVersion = '8')
+    {
+        return $this->fixturesDir() . '/sites/d' . $majorVersion;
+    }
+}