X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Flib%2FDrush%2FBoot%2FEmptyBoot.php;fp=vendor%2Fdrush%2Fdrush%2Flib%2FDrush%2FBoot%2FEmptyBoot.php;h=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hp=e7d9d62105a06efd936df556dbdef80517fa69d3;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0;p=yaffs-website diff --git a/vendor/drush/drush/lib/Drush/Boot/EmptyBoot.php b/vendor/drush/drush/lib/Drush/Boot/EmptyBoot.php deleted file mode 100644 index e7d9d6210..000000000 --- a/vendor/drush/drush/lib/Drush/Boot/EmptyBoot.php +++ /dev/null @@ -1,45 +0,0 @@ - '_drush_bootstrap_drush', - ); - } - - function bootstrap_init_phases() { - return array(DRUSH_BOOTSTRAP_DRUSH); - } - - function command_defaults() { - return array( - // TODO: Historically, commands that do not explicitly specify - // their bootstrap level default to DRUSH_BOOTSTRAP_DRUPAL_LOGIN. - // This isn't right any more, but we can't just change this to - // DRUSH_BOOTSTRAP_DRUSH, or we will start running commands that - // needed a full bootstrap with no bootstrap, and that won't work. - // For now, we will continue to force this to 'login'. Any command - // that does not declare 'bootstrap' is declaring that it is a Drupal - // command. - 'bootstrap' => DRUSH_BOOTSTRAP_DRUPAL_LOGIN, - ); - } -}