Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / drush / drush / src / Drupal / InstallerKernel.php
diff --git a/vendor/drush/drush/src/Drupal/InstallerKernel.php b/vendor/drush/drush/src/Drupal/InstallerKernel.php
new file mode 100644 (file)
index 0000000..f696bdd
--- /dev/null
@@ -0,0 +1,12 @@
+<?php
+namespace Drush\Drupal;
+
+use Drupal\Core\Installer\InstallerKernel as DrupalInstallerKernel;
+
+/**
+ * Overridden version of InstallerKernel adapted to the needs of Drush.
+ */
+class InstallerKernel extends DrupalInstallerKernel
+{
+    use DrupalKernelTrait;
+}