Skip to content

Commit 82086d1

Browse files
committed
Fix lint errors
1 parent a438bac commit 82086d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/Base.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ abstract class Base extends TestCase
6060
'WS:/v1/realtime:passed',
6161
];
6262

63-
const QUERY_HELPER_RESPONSES = [
63+
protected const QUERY_HELPER_RESPONSES = [
6464
'equal("title", ["Spiderman","Dr. Strange"])',
6565
'notEqual("title", ["Spiderman"])',
6666
'lessThan("releasedYear", [1990])',
@@ -74,7 +74,7 @@ abstract class Base extends TestCase
7474
'offset(20)',
7575
];
7676

77-
const PERMISSION_HELPER_RESPONSES = [
77+
protected const PERMISSION_HELPER_RESPONSES = [
7878
'read("any")',
7979
'write("user:userid")',
8080
'create("users")',
@@ -83,7 +83,7 @@ abstract class Base extends TestCase
8383
'delete("team:teamId")'
8484
];
8585

86-
const ID_HELPER_RESPONSES = [
86+
protected const ID_HELPER_RESPONSES = [
8787
'unique()',
8888
'custom_id'
8989
];

0 commit comments

Comments
 (0)