Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for deprecation notice:$modules property must be declared protected #722

Merged
merged 1 commit into from
Jun 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class ApigeeEdgeActionsRulesKernelTestBase extends RulesKernelTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_actions',
'apigee_edge_actions_debug',
'apigee_edge',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class EdgeEntityAddMemberEventTest extends ApigeeEdgeActionsRulesKernelTestBase
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_actions',
'apigee_edge_actions_debug',
'apigee_edge',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class EdgeEntityAddProductEventTest extends ApigeeEdgeActionsRulesKernelTestBase
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_actions',
'apigee_edge_actions_debug',
'apigee_edge',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class EdgeEntityRemoveMemberEventTest extends ApigeeEdgeActionsRulesKernelTestBa
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_actions',
'apigee_edge',
'apigee_edge_teams',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ class EdgeEntityRemoveProductEventTest extends ApigeeEdgeActionsRulesKernelTestB
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_actions',
'apigee_edge_actions_debug',
'apigee_edge',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ abstract class ApiProductRoleBasedAccessTestBase extends ApiProductAccessTest {
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_apiproduct_rbac_test',
];

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class TeamInvitationEventsTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'apigee_edge_teams',
'apigee_edge_teams_invitation_test',
'apigee_edge',
Expand Down