Completed
Push — master ( 0aa154...6fc129 )
by Maksim
05:50
created

ORMPagerProvider   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 58
Duplicated Lines 100 %

Coupling/Cohesion

Components 1
Dependencies 5

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 2
lcom 1
cbo 5
dl 58
loc 58
ccs 15
cts 15
cp 1
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 7 7 1
A provide() 16 16 1

How to fix   Duplicated Code   

Duplicated Code

Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.

Common duplication problems, and corresponding solutions are:

1
<?php
2
3
/*
4
 * This file is part of the FOSElasticaBundle package.
5
 *
6
 * (c) FriendsOfSymfony <http://friendsofsymfony.github.com/>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace FOS\ElasticaBundle\Doctrine;
13
14
use Doctrine\Common\Persistence\ManagerRegistry;
15
use FOS\ElasticaBundle\Provider\PagerfantaPager;
16
use FOS\ElasticaBundle\Provider\PagerProviderInterface;
17
use Pagerfanta\Adapter\DoctrineORMAdapter;
18
use Pagerfanta\Pagerfanta;
19
20 View Code Duplication
final class ORMPagerProvider implements PagerProviderInterface
0 ignored issues
show
Duplication introduced by
This class seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
21
{
22
    const ENTITY_ALIAS = 'a';
23
24
    /**
25
     * @var string
26
     */
27
    private $objectClass;
28
29
    /**
30
     * @var ManagerRegistry
31
     */
32
    private $doctrine;
33
34
    /**
35
     * @var array
36
     */
37
    private $baseOptions;
38
39
    /**
40
     * @var RegisterListenersService
41
     */
42
    private $registerListenersService;
43
44
    /**
45
     * @param ManagerRegistry $doctrine
46
     * @param RegisterListenersService $registerListenersService
47
     * @param string $objectClass
48
     * @param array $baseOptions
49
     */
50 4
    public function __construct(ManagerRegistry $doctrine, RegisterListenersService $registerListenersService, $objectClass, array $baseOptions)
51
    {
52 4
        $this->doctrine = $doctrine;
53 4
        $this->objectClass = $objectClass;
54 4
        $this->baseOptions = $baseOptions;
55 4
        $this->registerListenersService = $registerListenersService;
56 4
    }
57
58
    /**
59
     * {@inheritdoc}
60
     */
61 3
    public function provide(array $options = array())
62
    {
63 3
        $options = array_replace($this->baseOptions, $options);
64
65 3
        $manager = $this->doctrine->getManagerForClass($this->objectClass);
66 3
        $repository = $manager->getRepository($this->objectClass);
67
68 3
        $pager = new PagerfantaPager(new Pagerfanta(new DoctrineORMAdapter(call_user_func(
69 3
            [$repository, $options['query_builder_method']],
70 3
            self::ENTITY_ALIAS
71
        ))));
72
73 3
        $this->registerListenersService->register($manager, $pager, $options);
0 ignored issues
show
Bug introduced by
It seems like $manager defined by $this->doctrine->getMana...ass($this->objectClass) on line 65 can be null; however, FOS\ElasticaBundle\Doctr...nersService::register() does not accept null, maybe add an additional type check?

Unless you are absolutely sure that the expression can never be null because of other conditions, we strongly recommend to add an additional type check to your code:

/** @return stdClass|null */
function mayReturnNull() { }

function doesNotAcceptNull(stdClass $x) { }

// With potential error.
function withoutCheck() {
    $x = mayReturnNull();
    doesNotAcceptNull($x); // Potential error here.
}

// Safe - Alternative 1
function withCheck1() {
    $x = mayReturnNull();
    if ( ! $x instanceof stdClass) {
        throw new \LogicException('$x must be defined.');
    }
    doesNotAcceptNull($x);
}

// Safe - Alternative 2
function withCheck2() {
    $x = mayReturnNull();
    if ($x instanceof stdClass) {
        doesNotAcceptNull($x);
    }
}
Loading history...
74
75 3
        return $pager;
76
    }
77
}
78