verify() public static method

public static verify ( array $options, Symfony\Component\Console\Output\OutputInterface $output )
$options array
$output Symfony\Component\Console\Output\OutputInterface
Example #1
0
 /**
  * @param array $options
  * @param OutputInterface $output
  */
 protected function showCredentials(array $options, OutputInterface $output)
 {
     $output->writeln('<info>SUCCESS: Magestead has finished installing Magento!</info>');
     $table = new Table($output);
     $table->setHeaders(['Username', 'Password', 'Base URL'])->setRows([['admin', 'password123', $options['magestead']['apps']['mba_12345']['base_url']]]);
     $table->render();
     HostsPluginChecker::verify($options, $output);
 }