Completed
Push — master ( 3d485f...407dff )
by Paweł
66:49
created

EntityRepository::applyCriteria()   B

Complexity

Conditions 6
Paths 6

Size

Total Lines 22
Code Lines 15

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 14
CRAP Score 6.0106

Importance

Changes 0
Metric Value
dl 0
loc 22
ccs 14
cts 15
cp 0.9333
rs 8.6737
c 0
b 0
f 0
cc 6
eloc 15
nc 6
nop 3
crap 6.0106
1
<?php
2
3
/*
4
 * This file is part of the Superdesk Web Publisher Storage Bundle.
5
 *
6
 * Copyright 2016 Sourcefabric z.ú. and contributors.
7
 *
8
 * For the full copyright and license information, please see the
9
 * AUTHORS and LICENSE files distributed with this source code.
10
 *
11
 * @copyright 2016 Sourcefabric z.ú
12
 * @license http://www.superdesk.org/license
13
 */
14
15
namespace SWP\Bundle\StorageBundle\Doctrine\ORM;
16
17
use Doctrine\ORM\EntityRepository as BaseEntityRepository;
18
use SWP\Component\Storage\Repository\RepositoryInterface;
19
20
/**
21
 * @author Paweł Jędrzejewski <[email protected]>
22
 */
23
class EntityRepository extends BaseEntityRepository implements RepositoryInterface
24
{
25
    use EntityRepositoryTrait;
26
}
27