File size: 452 Bytes
e4f4821
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
<?php

namespace Kanboard\Core\Filter;

use PicoDb\Table;

/**
 * Formatter interface
 *
 * @package  filter
 * @author   Frederic Guillot
 */
interface FormatterInterface
{
    /**
     * Set query
     *
     * @access public
     * @param  Table $query
     * @return $this
     */
    public function withQuery(Table $query);

    /**
     * Apply formatter
     *
     * @access public
     * @return mixed
     */
    public function format();
}