blob: 95b140950af6939e6d1914a3ff1318bc52554650 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?php
namespace Kanboard\Formatter;
use Kanboard\Core\Filter\FormatterInterface;
/**
* Class TasksApiFormatter
*
* @package Kanboard\Formatter
*/
class TasksApiFormatter extends BaseFormatter implements FormatterInterface
{
protected $tasks = array();
public function withTasks($tasks)
{
$this->tasks = $tasks;
return $this;
}
/**
* Apply formatter
*
* @access public
* @return mixed
*/
public function format()
{
if (! empty($this->tasks)) {
foreach ($this->tasks as &$task) {
$task = $this->taskApiFormatter->withTask($task)->format();
}
}
return $this->tasks;
}
}
|