Total Complexity | 3 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
17 | class AttributeVisibilityHelper |
||
18 | { |
||
19 | /** |
||
20 | * Get the visibility of a property. |
||
21 | * |
||
22 | * @param Node\Stmt\Property $property The property. |
||
23 | * |
||
24 | * @return int The visibility property. |
||
25 | * |
||
26 | * @see VisibilityInterface For different constants of visibility. |
||
27 | */ |
||
28 | public static function getPropertyVisibility(Node\Stmt\Property $property): int |
||
39 |