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

Repository::applyCriteria()   B

Complexity

Conditions 5
Paths 5

Size

Total Lines 24
Code Lines 17

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 21
CRAP Score 5

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 24
ccs 21
cts 21
cp 1
rs 8.5125
cc 5
eloc 17
nc 5
nop 2
crap 5
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