| 1 | <?php |
||
| 21 | final class MethodUtils |
||
| 22 | { |
||
| 23 | private function __construct() { /* noop */ } |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Get method visibility from AST definition of method |
||
| 27 | * |
||
| 28 | * @param int|ClassMethod $value |
||
| 29 | * @param string $default |
||
| 30 | * |
||
| 31 | * @return string |
||
| 32 | */ |
||
| 33 | 5 | public static function getVisibility($value, $default = MethodMetadata::PUBLIC) |
|
| 53 | } |
||
| 54 |