Skip to content

Commit 7ed2925

Browse files
Add tokens for asymmetric visibility
1 parent 6093831 commit 7ed2925

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/Report/Html/SyntaxHighlighter.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,11 @@
6666
use const T_NEW;
6767
use const T_PRINT;
6868
use const T_PRIVATE;
69+
use const T_PRIVATE_SET;
6970
use const T_PROTECTED;
71+
use const T_PROTECTED_SET;
7072
use const T_PUBLIC;
73+
use const T_PUBLIC_SET;
7174
use const T_READONLY;
7275
use const T_REQUIRE;
7376
use const T_REQUIRE_ONCE;
@@ -157,8 +160,11 @@ final class SyntaxHighlighter
157160
T_NEW => true,
158161
T_PRINT => true,
159162
T_PRIVATE => true,
163+
T_PRIVATE_SET => true,
160164
T_PROTECTED => true,
165+
T_PROTECTED_SET => true,
161166
T_PUBLIC => true,
167+
T_PUBLIC_SET => true,
162168
T_READONLY => true,
163169
T_REQUIRE => true,
164170
T_REQUIRE_ONCE => true,

0 commit comments

Comments
 (0)