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

Repository::findBy()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 14
Code Lines 7

Duplication

Lines 14
Ratio 100 %

Code Coverage

Tests 9
CRAP Score 3

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 14
loc 14
ccs 9
cts 9
cp 1
rs 9.4285
cc 3
eloc 7
nc 4
nop 4
crap 3
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