Completed
Push — master ( 4da1f4...8b580e )
by Paweł
08:27
created

RouteRepository   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 3

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 3
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A getChildrenByStaticPrefix() 0 8 1
1
<?php
2
3
/*
4
 * This file is part of the Superdesk Web Publisher Content 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\ContentBundle\Doctrine\ORM;
16
17
use Doctrine\ORM\QueryBuilder;
18
use SWP\Bundle\ContentBundle\Model\RouteRepositoryInterface;
19
use SWP\Bundle\StorageBundle\Doctrine\ORM\EntityRepository;
20
21
class RouteRepository extends EntityRepository implements RouteRepositoryInterface
22
{
23
    /**
24
     * {@inheritdoc}
25
     */
26
    public function getChildrenByStaticPrefix(array $candidates, array $orderBy): QueryBuilder
27
    {
28
        $queryBuilder = $this->createQueryBuilder('r');
29
        $queryBuilder->andWhere($queryBuilder->expr()->in('r.parent', $candidates));
30
        $this->applySorting($queryBuilder, $orderBy, 'r');
31
32
        return $queryBuilder;
33
    }
34
}
35