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

Repository::createQueryBuilder()   A

Complexity

Conditions 2
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
cc 2
eloc 2
nc 1
nop 2
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\ORM;
13
14
use Doctrine\ORM\EntityRepository;
15
use Lug\Component\Resource\Repository\RepositoryInterface;
16
17
/**
18
 * @author GeLo <[email protected]>
19
 */
20
class Repository extends EntityRepository implements RepositoryInterface
21
{
22
    use RepositoryTrait;
23
}
24