Skip to content

Commit c55ac33

Browse files
committed
visibility of methdo is more explicit
1 parent 80f8de6 commit c55ac33

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Hal/Component/OOP/Reflected/ReflectedMethod.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
*/
2121
class ReflectedMethod {
2222

23-
CONST VISIBILITY_PUBLIC = 1;
24-
CONST VISIBILITY_PRIVATE = 2;
25-
CONST VISIBILITY_PROTECTED = 3;
23+
CONST VISIBILITY_PUBLIC = 'public';
24+
CONST VISIBILITY_PRIVATE = 'private';
25+
CONST VISIBILITY_PROTECTED = 'protected';
2626
CONST STATE_LOCAL = 1;
2727
CONST STATE_STATIC = 2;
2828

0 commit comments

Comments
 (0)