Formatter::format()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 1
cp 0
c 0
b 0
f 0
1
<?php
2
3
namespace mav3rick177\RapidPagination\Base\Contracts;
4
5
use mav3rick177\RapidPagination\Base\Query;
6
7
/**
8
 * Interface Formatter
9
 */
10
interface Formatter
11
{
12
    /**
13
     * Format rows.
14
     *
15
     * @param  mixed $rows
16
     * @param  array $meta
17
     * @param  Query $query
18
     * @return mixed
19
     */
20
    public function format($rows, array $meta, Query $query);
21
}
22