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(); }