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