| 1 | <?php |
||
| 8 | final class MethodUtils |
||
| 9 | { |
||
| 10 | private function __construct() { /* noop */ } |
||
| 11 | |||
| 12 | /** |
||
| 13 | * Get method visibility from AST definition |
||
| 14 | * |
||
| 15 | * @param int $value |
||
| 16 | * @param string $default |
||
| 17 | * |
||
| 18 | * @return string |
||
| 19 | */ |
||
| 20 | public static function getVisibility($value, $default = MethodMetadata::PUBLIC) |
||
| 38 | } |
||
| 39 |