Total Complexity | 2 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
10 | abstract class Parameter |
||
11 | { |
||
12 | /** |
||
13 | * Parameter name. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $_name; |
||
18 | |||
19 | /** |
||
20 | * Parameter value. |
||
21 | * |
||
22 | * @var mixed |
||
23 | */ |
||
24 | protected $_value; |
||
25 | |||
26 | /** |
||
27 | * Get the parameter name. |
||
28 | * |
||
29 | * @return string |
||
30 | */ |
||
31 | 306 | public function name(): string |
|
34 | } |
||
35 | |||
36 | /** |
||
37 | * Get the parameter value. |
||
38 | * |
||
39 | * @return mixed |
||
40 | */ |
||
41 | 286 | public function value() |
|
46 |