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

FetchHandler::apply()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
nc 1
cc 1
eloc 2
nop 1
crap 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