X-Git-Url: http://www.aleph1.co.uk/gitweb/?p=yaffs-website;a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Fsrc%2FBoot%2FBoot.php;fp=vendor%2Fdrush%2Fdrush%2Fsrc%2FBoot%2FBoot.php;h=4e2278f3206e53f8c841f667cff1a1296e5fd43c;hp=0000000000000000000000000000000000000000;hb=af6d1fb995500ae68849458ee10d66abbdcfb252;hpb=680c79a86e3ed402f263faeac92e89fb6d9edcc0 diff --git a/vendor/drush/drush/src/Boot/Boot.php b/vendor/drush/drush/src/Boot/Boot.php new file mode 100644 index 000000000..4e2278f32 --- /dev/null +++ b/vendor/drush/drush/src/Boot/Boot.php @@ -0,0 +1,92 @@ + method name. + */ + public function bootstrapPhases(); + + /** + * Return an array mapping from bootstrap phase shorthand + * strings (e.g. "full") to the corresponding bootstrap + * phase index constant (e.g. DRUSH_BOOTSTRAP_DRUPAL_FULL). + */ + public function bootstrapPhaseMap(); + + /** + * Convert from a phase shorthand or constant to a phase index. + */ + public function lookUpPhaseIndex($phase); + + /** + * Called by Drush if a command is not found, or if the + * command was found, but did not meet requirements. + * + * The implementation in BaseBoot should be sufficient + * for most cases, so this method typically will not need + * to be overridden. + */ + public function reportCommandError($command); + + /** + * This method is called during the shutdown of drush. + * + * @return void + */ + public function terminate(); +}