Run php-cs-fixer on the code base
This commit is contained in:
@@ -19,11 +19,9 @@ class RecurringTaskSubscriber extends \Kanboard\Core\Base implements EventSubscr
|
||||
public function onMove(TaskEvent $event)
|
||||
{
|
||||
if ($event['recurrence_status'] == Task::RECURRING_STATUS_PENDING) {
|
||||
|
||||
if ($event['recurrence_trigger'] == Task::RECURRING_TRIGGER_FIRST_COLUMN && $this->board->getFirstColumn($event['project_id']) == $event['src_column_id']) {
|
||||
$this->taskDuplication->duplicateRecurringTask($event['task_id']);
|
||||
}
|
||||
else if ($event['recurrence_trigger'] == Task::RECURRING_TRIGGER_LAST_COLUMN && $this->board->getLastColumn($event['project_id']) == $event['dst_column_id']) {
|
||||
} elseif ($event['recurrence_trigger'] == Task::RECURRING_TRIGGER_LAST_COLUMN && $this->board->getLastColumn($event['project_id']) == $event['dst_column_id']) {
|
||||
$this->taskDuplication->duplicateRecurringTask($event['task_id']);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user