You are here

protected function TestSiteReleaseLocksCommand::execute in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/TestSite/Commands/TestSiteReleaseLocksCommand.php \Drupal\TestSite\Commands\TestSiteReleaseLocksCommand::execute()

File

core/tests/Drupal/TestSite/Commands/TestSiteReleaseLocksCommand.php, line 32

Class

TestSiteReleaseLocksCommand
Command to release all test site database prefix locks.

Namespace

Drupal\TestSite\Commands

Code

protected function execute(InputInterface $input, OutputInterface $output) {
  TestDatabase::releaseAllTestLocks();
  $output
    ->writeln('<info>Successfully released all the test database locks</info>');
  return 0;
}