for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dekalee\StatsdSwarrotBundle\Configurator;
use Dekalee\StatsdSwarrotBundle\Processor\StatsdTimerProcessor;
use Swarrot\SwarrotBundle\Processor\ProcessorConfiguratorEnableAware;
use Swarrot\SwarrotBundle\Processor\ProcessorConfiguratorExtrasAware;
use Swarrot\SwarrotBundle\Processor\ProcessorConfiguratorInterface;
use Symfony\Component\Console\Input\InputInterface;
/**
* Class StatsdTimerProcessorConfigurator
*/
class StatsdTimerProcessorConfigurator implements ProcessorConfiguratorInterface
{
use ProcessorConfiguratorEnableAware, ProcessorConfiguratorExtrasAware;
* {@inheritdoc}
public function getProcessorArguments(array $options)
return [
StatsdTimerProcessor::CLASS,
];
}
public function getCommandOptions()
return [];
public function resolveOptions(InputInterface $input)
return $this->getExtras();