NonNegativeIntegerRangeType   A
last analyzed

Complexity

Total Complexity 5

Size/Duplication

Total Lines 65
Duplicated Lines 100 %

Importance

Changes 0
Metric Value
dl 65
loc 65
rs 10
c 0
b 0
f 0
wmc 5

5 Methods

Rating   Name   Duplication   Size   Complexity  
A setLowerBound() 5 5 1
A __construct() 4 4 1
A getUpperBound() 3 3 1
A setUpperBound() 5 5 1
A getLowerBound() 3 3 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 PHP CS Fixer.
5
 *
6
 * (c) Fabien Potencier <[email protected]>
7
 *     Dariusz Rumiński <[email protected]>
8
 *
9
 * This source file is subject to the MIT license that is bundled
10
 * with this source code in the file LICENSE.
11
 */
12
13
namespace Etrias\PaazlConnector\SoapTypes;
14
15 View Code Duplication
class NonNegativeIntegerRangeType
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...
16
{
17
    /**
18
     * @var nonNegativeInteger
19
     */
20
    protected $lowerBound = null;
21
22
    /**
23
     * @var nonNegativeInteger
24
     */
25
    protected $upperBound = null;
26
27
    /**
28
     * Constructor.
29
     *
30
     * @var nonNegativeInteger
31
     * @var nonNegativeInteger $upperBound
32
     *
33
     * @param mixed $lowerBound
34
     * @param mixed $upperBound
35
     */
36
    public function __construct($lowerBound, $upperBound)
37
    {
38
        $this->lowerBound = $lowerBound;
0 ignored issues
show
Documentation Bug introduced by
$lowerBound is of type mixed, but the property $lowerBound was declared to be of type Etrias\PaazlConnector\SoapTypes\nonNegativeInteger. Are you sure that you always receive this specific sub-class here, or does it make sense to add an instanceof check?

Our type inference engine has found a suspicous assignment of a value to a property. This check raises an issue when a value that can be of a given class or a super-class is assigned to a property that is type hinted more strictly.

Either this assignment is in error or an instanceof check should be added for that assignment.

class Alien {}

class Dalek extends Alien {}

class Plot
{
    /** @var  Dalek */
    public $villain;
}

$alien = new Alien();
$plot = new Plot();
if ($alien instanceof Dalek) {
    $plot->villain = $alien;
}
Loading history...
39
        $this->upperBound = $upperBound;
40
    }
41
42
    /**
43
     * @return nonNegativeInteger
44
     */
45
    public function getLowerBound()
46
    {
47
        return $this->lowerBound;
48
    }
49
50
    /**
51
     * @param nonNegativeInteger $lowerBound
52
     *
53
     * @return $this
54
     */
55
    public function setLowerBound($lowerBound)
56
    {
57
        $this->lowerBound = $lowerBound;
58
59
        return $this;
60
    }
61
62
    /**
63
     * @return nonNegativeInteger
64
     */
65
    public function getUpperBound()
66
    {
67
        return $this->upperBound;
68
    }
69
70
    /**
71
     * @param nonNegativeInteger $upperBound
72
     *
73
     * @return $this
74
     */
75
    public function setUpperBound($upperBound)
76
    {
77
        $this->upperBound = $upperBound;
78
79
        return $this;
80
    }
81
}
82