summaryrefslogtreecommitdiff
path: root/app/Formatter/ProjectsApiFormatter.php
blob: 0bf97da492d858a6240590fd80e40a737e2df652 (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 ProjectsApiFormatter
 *
 * @package Kanboard\Formatter
 */
class ProjectsApiFormatter extends BaseFormatter implements FormatterInterface
{
    protected $projects = array();

    public function withProjects($projects)
    {
        $this->projects = $projects;
        return $this;
    }

    /**
     * Apply formatter
     *
     * @access public
     * @return mixed
     */
    public function format()
    {
        if (! empty($this->projects)) {
            foreach ($this->projects as &$project) {
                $project = $this->projectApiFormatter->withProject($project)->format();
            }
        }

        return $this->projects;
    }
}