Completed
Pull Request — develop (#235)
by ANTHONIUS
08:47
created

PaginatorFactory::getRepository()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: toni
5
 * Date: 20/06/16
6
 * Time: 14:59
7
 */
8
9
namespace Cv\Paginator;
10
11
12
use Core\Paginator\PaginatorFactoryAbstract;
13
14
class PaginatorFactory extends PaginatorFactoryAbstract
15
{
16
    protected function getFilter()
17
    {
18
        return 'Cv/PaginationQuery';
19
    }
20
21
    protected function getRepository()
22
    {
23
        return 'Cv/Cv';
24
    }
25
26
}