1 | <?php |
||
9 | abstract class Parameter |
||
10 | { |
||
11 | /** |
||
12 | * Parameter name. |
||
13 | * |
||
14 | * @var string $_name |
||
15 | */ |
||
16 | protected $_name; |
||
17 | |||
18 | /** |
||
19 | * Parameter value. |
||
20 | * |
||
21 | * @var mixed $_value |
||
22 | */ |
||
23 | protected $_value; |
||
24 | |||
25 | /** |
||
26 | * Get the parameter name. |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | 278 | public function name() { |
|
33 | |||
34 | /** |
||
35 | * Get the parameter value. |
||
36 | * |
||
37 | * @return mixed |
||
38 | */ |
||
39 | 255 | public function value() { |
|
42 | } |
||
43 |