Passed
Push — master ( 6028dd...89a59a )
by Vitaliy
02:15
created

FetchHandler   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 2
dl 0
loc 16
ccs 4
cts 4
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A apply() 0 4 1
A getPriority() 0 4 1
1
<?php
2
3
namespace Nayjest\Querying\Handler\Illuminate;
4
5
use Illuminate\Database\Query\Builder;
6
use Nayjest\Querying\Handler\AbstractHandler;
7
use Nayjest\Querying\Handler\Priority;
8
9
class FetchHandler extends AbstractHandler
10
{
11
    /**
12
     * @param Builder $dataSource
13
     * @return mixed
14
     */
15 3
    public function apply($dataSource)
16
    {
17 3
        return $dataSource->get();
18
    }
19
20 3
    public function getPriority()
21
    {
22 3
        return Priority::FETCH;
23
    }
24
}
25