function DevelServicesCommand::execute

File

src/Drush/Commands/DevelServicesCommand.php, line 47

Class

DevelServicesCommand
#[AsCommand(name: self::NAME, description: 'Get a list of available container services.', aliases: [ 'devel-container-services', 'dcs', 'devel-services', ])] #[CLI\FieldLabels(labels: [ 'id' => 'Id', ])] #[CLI\DefaultTableFields(fields:…

Namespace

Drupal\devel\Drush\Commands

Code

public function execute(InputInterface $input, OutputInterface $output) : int {
  $data = $this->doExecute($input, $output);
  $this->writeFormattedOutput($input, $output, $data);
  return Command::SUCCESS;
}