Completed
Push — master ( a92a0f...acd8aa )
by Ryan
08:10
created

EntryQueryBuilder::__call()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 11
Code Lines 6

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 11
rs 9.4285
cc 2
eloc 6
nc 2
nop 2
1
<?php namespace Anomaly\Streams\Platform\Entry;
2
3
use Anomaly\Streams\Platform\Model\EloquentQueryBuilder;
4
5
/**
6
 * Class EntryQueryBuilder
7
 *
8
 * @link          http://anomaly.is/streams-platform
9
 * @author        AnomalyLabs, Inc. <[email protected]>
10
 * @author        Ryan Thompson <[email protected]>
11
 * @package       Anomaly\Streams\Platform\Entry
12
 */
13
class EntryQueryBuilder extends EloquentQueryBuilder
14
{
15
16
    /**
17
     * The query model.
18
     *
19
     * @var EntryModel
20
     */
21
    protected $model;
22
}
23