1 | <?php |
||
5 | class MethodRowParameter |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | protected $var; |
||
11 | |||
12 | /** |
||
13 | * @var string|null |
||
14 | */ |
||
15 | protected $type; |
||
16 | |||
17 | /** |
||
18 | * @param string $var |
||
19 | * @param string|null $type |
||
20 | */ |
||
21 | public function __construct($var, $type = null) |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function __toString() |
||
38 | } |
||
39 |