Completed
Push — master ( 4e4cd8...063296 )
by Maksim
16s
created

PostInsertObjectsEvent   A

Complexity

Total Complexity 5

Size/Duplication

Total Lines 62
Duplicated Lines 11.29 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 5
lcom 0
cbo 1
dl 7
loc 62
ccs 14
cts 14
cp 1
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 7 7 1
A getPager() 0 4 1
A getOptions() 0 4 1
A getObjectPersister() 0 4 1
A getObjects() 0 4 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
namespace FOS\ElasticaBundle\Persister\Event;
3
4
use FOS\ElasticaBundle\Persister\ObjectPersisterInterface;
5
use FOS\ElasticaBundle\Provider\PagerInterface;
6
use Symfony\Component\EventDispatcher\Event;
7
8
final class PostInsertObjectsEvent extends Event
9
{
10
    /**
11
     * @var PagerInterface
12
     */
13
    private $pager;
14
15
    /**
16
     * @var ObjectPersisterInterface
17
     */
18
    private $objectPersister;
19
20
    /**
21
     * @var object[]
22
     */
23
    private $objects;
24
25
    /**
26
     * @var array
27
     */
28
    private $options;
29
30 11 View Code Duplication
    public function __construct(PagerInterface $pager, ObjectPersisterInterface $objectPersister, array $objects, array $options)
31
    {
32 11
        $this->pager = $pager;
33 11
        $this->objectPersister = $objectPersister;
34 11
        $this->objects = $objects;
35 11
        $this->options = $options;
36 11
    }
37
38
    /**
39
     * @return PagerInterface
40
     */
41 2
    public function getPager()
42
    {
43 2
        return $this->pager;
44
    }
45
46
    /**
47
     * @return array
48
     */
49 2
    public function getOptions()
50
    {
51 2
        return $this->options;
52
    }
53
54
    /**
55
     * @return ObjectPersisterInterface
56
     */
57 2
    public function getObjectPersister()
58
    {
59 2
        return $this->objectPersister;
60
    }
61
62
    /**
63
     * @return object[]
64
     */
65 2
    public function getObjects()
66
    {
67 2
        return $this->objects;
68
    }
69
}