summaryrefslogtreecommitdiff
path: root/app/Event/TaskListEvent.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/Event/TaskListEvent.php')
-rw-r--r--app/Event/TaskListEvent.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/Event/TaskListEvent.php b/app/Event/TaskListEvent.php
new file mode 100644
index 00000000..9be1a7d9
--- /dev/null
+++ b/app/Event/TaskListEvent.php
@@ -0,0 +1,11 @@
+<?php
+
+namespace Kanboard\Event;
+
+class TaskListEvent extends GenericEvent
+{
+ public function setTasks(array &$tasks)
+ {
+ $this->container['tasks'] =& $tasks;
+ }
+}