partkeepr

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

PartKeeprTipOfTheDayBundle.php (410B)


      1 <?php
      2 
      3 namespace PartKeepr\TipOfTheDayBundle;
      4 
      5 use PartKeepr\TipOfTheDayBundle\Command\SyncTipsCommand;
      6 use Symfony\Component\Console\Application;
      7 use Symfony\Component\HttpKernel\Bundle\Bundle;
      8 
      9 class PartKeeprTipOfTheDayBundle extends Bundle
     10 {
     11     /**
     12      * {@inheritdoc}
     13      */
     14     public function registerCommands(Application $application)
     15     {
     16         $application->add(new SyncTipsCommand());
     17     }
     18 }