partkeepr

fork of partkeepr
git clone https://git.e1e0.net/partkeepr.git
Log | Files | Refs | Submodules | README | LICENSE

ClearCronLoggerCommand.php (636B)


      1 <?php
      2 
      3 namespace PartKeepr\CoreBundle\Command;
      4 
      5 use Symfony\Bundle\FrameworkBundle\Command\ContainerAwareCommand;
      6 use Symfony\Component\Console\Input\InputInterface;
      7 use Symfony\Component\Console\Output\OutputInterface;
      8 
      9 class ClearCronLoggerCommand extends ContainerAwareCommand
     10 {
     11     public function configure()
     12     {
     13         parent::configure();
     14         $this->setName('partkeepr:cron:clear');
     15         $this->setDescription('Clears all cron logger entries');
     16     }
     17 
     18     public function execute(InputInterface $input, OutputInterface $output)
     19     {
     20         $this->getContainer()->get('partkeepr.cronlogger_service')->clear();
     21     }
     22 }