for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Dekalee\AdbackAnalyticsBundle\Command;
use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
/**
* Class AnalyticsRefreshTagCommand
*/
class AnalyticsRefreshTagCommand extends ContainerAwareCommand
{
* Configure the command
protected function configure()
$this
->setName('dekalee:adback-anayltics:refresh-tag')
->setDescription('Refresh the adback tags')
;
}
* @param InputInterface $input
* @param OutputInterface $output
*
* @return null
protected function execute(InputInterface $input, OutputInterface $output)
$this->getContainer()->get('dekalee_adback_analytics.query.script_url')->execute();