1 | <?php |
||
17 | class ParameterCommentGenerator implements Interfaces\ParameterDocumentator |
||
18 | { |
||
19 | /** |
||
20 | * @var ParameterInformation |
||
21 | */ |
||
22 | private $parameter; |
||
23 | |||
24 | |||
25 | /** |
||
26 | * @param ParameterInformation $parameter |
||
27 | * |
||
28 | * @return string |
||
29 | */ |
||
30 | public function docBlock(ParameterInformation $parameter) |
||
44 | |||
45 | private function getVarNameProposal() |
||
49 | |||
50 | private function documentPrimitive() |
||
54 | |||
55 | private function documentClass() |
||
59 | |||
60 | private function documentInterfaces() |
||
64 | |||
65 | } |
||
66 |