Completed
Pull Request — master (#39)
by Eric
13:12 queued 25s
created

Repository::buildQueryBuilder()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 9
Code Lines 5

Duplication

Lines 9
Ratio 100 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 9
loc 9
ccs 5
cts 5
cp 1
rs 9.6666
cc 2
eloc 5
nc 2
nop 3
crap 2
1
<?php
2
3
/*
4
 * This file is part of the Lug package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Lug\Component\Resource\Repository\Doctrine\MongoDB;
13
14
use Doctrine\ODM\MongoDB\DocumentRepository;
15
use Lug\Component\Resource\Repository\RepositoryInterface;
16
17
/**
18
 * @author GeLo <[email protected]>
19
 */
20
class Repository extends DocumentRepository implements RepositoryInterface
21
{
22
    use RepositoryTrait;
23
}
24