src/Package/Admin/Tools/EventSubscriber/EntityUpdateSubscriber/EntityUpdateSubscriber.php line 39

Open in your IDE?
  1. <?php
  2. namespace App\Package\Admin\Tools\EventSubscriber\EntityUpdateSubscriber;
  3. use Symfony\Component\EventDispatcher\EventSubscriberInterface;
  4. use App\Package\Admin\Main\Event\EntityUpdateEvent;
  5. /**
  6.  * EntityUpdateSubscriber
  7.  * 
  8.  * Subscriber which listens for entity update event (created or updated)
  9.  * - if entity has "dispatchEntityUpdateEvent" function then calls it
  10.  * 
  11.  * @author     Daniel Balowski <d.balowski@openform.pl> (_creator)
  12.  * @copyright  Openform
  13.  * @since      03.2019
  14.  */
  15. class EntityUpdateSubscriber implements EventSubscriberInterface
  16. {
  17.     /**
  18.      * @return array
  19.      */
  20.     public static function getSubscribedEvents() : array
  21.     {
  22.         return [
  23.             EntityUpdateEvent::NAME => [
  24.                 [ 'onEntityUpdate'1000 ],
  25.             ]
  26.         ];
  27.     }
  28.     /**
  29.      * On entity update event
  30.      *
  31.      * @param EntityUpdateEvent  $entity
  32.      * 
  33.      * @return void
  34.      */
  35.     public function onEntityUpdate(EntityUpdateEvent $event)
  36.     {
  37.         $entity $event->getUpdatedEntity();
  38.         if (method_exists($entity'dispatchEntityUpdateEvent')) {
  39.             $entity->dispatchEntityUpdateEvent();
  40.         }
  41.         
  42.         return;
  43.     }
  44. }