parent
df36071c9c
commit
380fb0afe9
|
@ -15,6 +15,8 @@ class GroupMembershipCache
|
||||||
|
|
||||||
protected $memberships;
|
protected $memberships;
|
||||||
|
|
||||||
|
protected $membershipsById;
|
||||||
|
|
||||||
/** @var Db Director database connection */
|
/** @var Db Director database connection */
|
||||||
protected $connection;
|
protected $connection;
|
||||||
|
|
||||||
|
@ -33,7 +35,7 @@ class GroupMembershipCache
|
||||||
protected function loadAllMemberships()
|
protected function loadAllMemberships()
|
||||||
{
|
{
|
||||||
$db = $this->connection->getDbAdapter();
|
$db = $this->connection->getDbAdapter();
|
||||||
$this->memberships = array();
|
$this->memberships = $this->membershipsById = array();
|
||||||
|
|
||||||
$type = $this->type;
|
$type = $this->type;
|
||||||
$table = $this->table;
|
$table = $this->table;
|
||||||
|
|
Loading…
Reference in New Issue