Newer
Older
Thomas Steur
a validé
<?php
/**
* Piwik - free/libre analytics platform
Thomas Steur
a validé
*
* @link http://piwik.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*
*/
Thomas Steur
a validé
use Symfony\Component\Console\Command\Command as SymfonyCommand;
Thomas Steur
a validé
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
Thomas Steur
a validé
/**
diosmosis
a validé
* The base class for console commands.
*/
class ConsoleCommand extends SymfonyCommand
Thomas Steur
a validé
{
public function writeSuccessMessage(OutputInterface $output, $messages)
{
$output->writeln('');
foreach ($messages as $message) {
$output->writeln('<info>' . $message . '</info>');
}
$output->writeln('');
}
Thomas Steur
a validé
protected function checkAllRequiredOptionsAreNotEmpty(InputInterface $input)
{
$options = $this->getDefinition()->getOptions();
foreach ($options as $option) {
$name = $option->getName();
$value = $input->getOption($name);
if ($option->isValueRequired() && empty($value)) {
throw new \InvalidArgumentException(sprintf('The required option %s is not set', $name));
}
}
}