1 | <?php |
||
5 | class ParsedFunction extends ParsedObject |
||
6 | { |
||
7 | /** |
||
8 | * @var string |
||
9 | */ |
||
10 | private $visibility; |
||
11 | |||
12 | 66 | public function __construct($doc, $visibility, $name) |
|
17 | |||
18 | /** |
||
19 | * Returns the accessibility level of the parsed |
||
20 | * method - i.e public, private, protected. |
||
21 | * |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getVisibility() |
||
28 | } |
||
29 |