Example #1
0
 public function execute(TaskEvent $event)
 {
     $user_id = $this->userSession->getId();
     if (!empty($user_id)) {
         $this->transition->save($user_id, $event->getAll());
     }
 }
 public function execute(TaskEvent $event)
 {
     $this->logger->debug('Subscriber executed: ' . __METHOD__);
     $user_id = $this->userSession->getId();
     if (!empty($user_id)) {
         $this->transitionModel->save($user_id, $event->getAll());
     }
 }