ClassWithProtectedProperties::setProperty0()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace GeneratedHydratorTestAsset;
6
7
/**
8
 * Base test class to play around with protected properties
9
 */
10
class ClassWithProtectedProperties
11
{
12
    /** @var string */
13
    protected $property0 = 'property0';
14
15
    /** @var string */
16
    protected $property1 = 'property1';
17
18
    /** @var string */
19
    protected $property2 = 'property2';
20
21
    /** @var string */
22
    protected $property3 = 'property3';
23
24
    /** @var string */
25
    protected $property4 = 'property4';
26
27
    /** @var string */
28
    protected $property5 = 'property5';
29
30
    /** @var string */
31
    protected $property6 = 'property6';
32
33
    /** @var string */
34
    protected $property7 = 'property7';
35
36
    /** @var string */
37
    protected $property8 = 'property8';
38
39
    /** @var string */
40
    protected $property9 = 'property9';
41
42
    public function setProperty0(string $property0) : void
43
    {
44
        $this->property0 = $property0;
45
    }
46
47
    public function getProperty0() : string
48
    {
49
        return $this->property0;
50
    }
51
52
    public function setProperty1(string $property1) : void
53
    {
54
        $this->property1 = $property1;
55
    }
56
57
    public function getProperty1() : string
58
    {
59
        return $this->property1;
60
    }
61
62
    public function setProperty2(string $property2) : void
63
    {
64
        $this->property2 = $property2;
65
    }
66
67
    public function getProperty2() : string
68
    {
69
        return $this->property2;
70
    }
71
72
    public function setProperty3(string $property3) : void
73
    {
74
        $this->property3 = $property3;
75
    }
76
77
    public function getProperty3() : string
78
    {
79
        return $this->property3;
80
    }
81
82
    public function setProperty4(string $property4) : void
83
    {
84
        $this->property4 = $property4;
85
    }
86
87
    public function getProperty4() : string
88
    {
89
        return $this->property4;
90
    }
91
92
    public function setProperty5(string $property5) : void
93
    {
94
        $this->property5 = $property5;
95
    }
96
97
    public function getProperty5() : string
98
    {
99
        return $this->property5;
100
    }
101
102
    public function setProperty6(string $property6) : void
103
    {
104
        $this->property6 = $property6;
105
    }
106
107
    public function getProperty6() : string
108
    {
109
        return $this->property6;
110
    }
111
112
    public function setProperty7(string $property7) : void
113
    {
114
        $this->property7 = $property7;
115
    }
116
117
    public function getProperty7() : string
118
    {
119
        return $this->property7;
120
    }
121
122
    public function setProperty8(string $property8) : void
123
    {
124
        $this->property8 = $property8;
125
    }
126
127
    public function getProperty8() : string
128
    {
129
        return $this->property8;
130
    }
131
132
    public function setProperty9(string $property9) : void
133
    {
134
        $this->property9 = $property9;
135
    }
136
137
    public function getProperty9() : string
138
    {
139
        return $this->property9;
140
    }
141
}
142