1 | <?php namespace ParaTest\Parser; |
||
3 | class ParsedFunction extends ParsedObject |
||
4 | { |
||
5 | /** |
||
6 | * @var string |
||
7 | */ |
||
8 | private $visibility; |
||
9 | |||
10 | 66 | public function __construct($doc, $visibility, $name) |
|
15 | |||
16 | /** |
||
17 | * Returns the accessibility level of the parsed |
||
18 | * method - i.e public, private, protected |
||
19 | * |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getVisibility() |
||
26 | } |