summaryrefslogtreecommitdiff
path: root/app/Event/FileNotificationListener.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-10-12 21:38:56 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-10-12 21:38:56 -0400
commit074056352de98fc567b4d13184c72887c75625d0 (patch)
tree7d262c3a5d5f779648f51aa0eb7d9f279c05d89d /app/Event/FileNotificationListener.php
parent4061927d215c846ff8eb196301bf61532018042b (diff)
Project activity refactoring and listeners improvements
Diffstat (limited to 'app/Event/FileNotificationListener.php')
-rw-r--r--app/Event/FileNotificationListener.php30
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;
- }
-}