vendor/mmoreram/gearman-bundle/Mmoreram/GearmanBundle/GearmanBundle.php line 10

Open in your IDE?
  1. <?php
  2. namespace Mmoreram\GearmanBundle;
  3. use Doctrine\Common\Annotations\AnnotationRegistry;
  4. use Mmoreram\GearmanBundle\Driver\Gearman\Work;
  5. use Mmoreram\GearmanBundle\Driver\Gearman\Job;
  6. use Symfony\Component\HttpKernel\Bundle\Bundle;
  7. class GearmanBundle extends Bundle
  8. {
  9.     /**
  10.      * Boots the Bundle.
  11.      */
  12.     public function boot()
  13.     {
  14.         AnnotationRegistry::loadAnnotationClass(Work::class);
  15.         AnnotationRegistry::loadAnnotationClass(Job::class);
  16.     }
  17. }