diff options
Diffstat (limited to 'app/Event/FileNotificationListener.php')
-rw-r--r-- | app/Event/FileNotificationListener.php | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/app/Event/FileNotificationListener.php b/app/Event/FileNotificationListener.php deleted file mode 100644 index 2366ce5d..00000000 --- a/app/Event/FileNotificationListener.php +++ /dev/null @@ -1,30 +0,0 @@ -<?php - -namespace Event; - -use Event\BaseNotificationListener; - -/** - * File notification listener - * - * @package event - * @author Frederic Guillot - */ -class FileNotificationListener extends BaseNotificationListener -{ - /** - * Fetch data for the mail template - * - * @access public - * @param array $data Event data - * @return array - */ - public function getTemplateData(array $data) - { - $values = array(); - $values['file'] = $data; - $values['task'] = $this->notification->taskFinder->getDetails($data['task_id']); - - return $values; - } -} |