Formatter
last analyzed

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 12
ccs 0
cts 1
cp 0
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
format() 0 1 ?
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