Completed
Push — develop ( 09456b...2094a2 )
by Mathias
14s queued 10s
created

ListJobPaginatorFactory::getRepository()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
/**
4
 * YAWIK
5
 *
6
 * @filesource
7
 * @license MIT
8
 * @copyright  2013 - 2017 Cross Solution <http://cross-solution.de>
9
 */
10
11
namespace Organizations\Paginator;
12
13
use Core\Paginator\PaginatorFactoryAbstract;
14
15
/**
16
 * Class ListJobPaginatorFactory
17
 *
18
 * @package Organizations\Paginator
19
 * @author Anthonius Munthi <[email protected]>
20
 * @since 0.30
21
 */
22
class ListJobPaginatorFactory extends PaginatorFactoryAbstract
23
{
24
    protected function getFilter()
25
    {
26
        return 'Organizations/ListJobQuery';
27
    }
28
29
    protected function getRepository()
30
    {
31
        return 'Jobs/Job';
32
    }
33
}
34