Skip to content

Commit

Permalink
Update DbAcl.php - Changed objects from private to protected
Browse files Browse the repository at this point in the history
To solve the issue when using CachedDB adapter.
  • Loading branch information
1DL authored Apr 1, 2024
1 parent 1df9f6b commit 35bfb86
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Adapter/DbAcl.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@
*/
class DbAcl implements AclInterface
{
private PermissionsTable $Permission;
private ArosTable $Aro;
private AcosTable $Aco;
protected PermissionsTable $Permission;
protected ArosTable $Aro;
protected AcosTable $Aco;

/**
* Constructor
Expand Down

0 comments on commit 35bfb86

Please sign in to comment.