| 1 | <?php |
||
| 12 | class Dic |
||
| 13 | { |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var CallerPositionFinder |
||
| 17 | */ |
||
| 18 | public $callerFinder; |
||
| 19 | /** |
||
| 20 | * @var array |
||
| 21 | */ |
||
| 22 | public static $fileOffset = []; |
||
| 23 | /** |
||
| 24 | * @var Documentator |
||
| 25 | */ |
||
| 26 | public static $documentator; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * Dic constructor. |
||
| 30 | * |
||
| 31 | * @param CallerPositionFinder $callerFinder |
||
| 32 | * @param Documentator $documentator |
||
| 33 | */ |
||
| 34 | public function __construct(CallerPositionFinder $callerFinder, Documentator $documentator) |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param $param |
||
| 42 | */ |
||
| 43 | public function doc($param) |
||
| 55 | |||
| 56 | /** |
||
| 57 | * @param ParameterInformation $parameterInformation |
||
| 58 | * @param CallerPosition $callerPosition |
||
| 59 | * @param $offset |
||
| 60 | */ |
||
| 61 | public static function appendComment( |
||
| 68 | } |