1 | <?php |
||
9 | class Documentator |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var Interfaces\ParameterDocumentator |
||
14 | */ |
||
15 | private $parameterCommentGenerator; |
||
16 | |||
17 | /** |
||
18 | * @var Interfaces\TextFileManipulator |
||
19 | */ |
||
20 | private $commentAppender; |
||
21 | |||
22 | |||
23 | /** |
||
24 | * Documentator constructor. |
||
25 | * |
||
26 | * @param Interfaces\TextFileManipulator $commentAppender |
||
27 | * @param Interfaces\ParameterDocumentator $parameterCommentGenerator |
||
28 | */ |
||
29 | public function __construct( |
||
38 | |||
39 | /** |
||
40 | * @param ParameterInformation $parameterInformation |
||
41 | * @param CallerPosition $callerData |
||
42 | * @param $offset |
||
43 | */ |
||
44 | public function document(ParameterInformation $parameterInformation, CallerPosition $callerData, $offset) |
||
49 | |||
50 | } |