Skip to content

Commit

Permalink
update proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
barryo committed Jun 28, 2021
1 parent c0aa503 commit 05a25e1
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions database/Proxies/__CG__EntitiesCustomer.php
Original file line number Diff line number Diff line change
Expand Up @@ -1258,6 +1258,17 @@ public function isTypeProBono()
return parent::isTypeProBono();
}

/**
* {@inheritDoc}
*/
public function isActive()
{

$this->__initializer__ && $this->__initializer__->__invoke($this, 'isActive', []);

return parent::isActive();
}

/**
* {@inheritDoc}
*/
Expand Down
11 changes: 11 additions & 0 deletions database/Proxies/__CG__EntitiesUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,17 @@ public function getCustomers()
return parent::getCustomers();
}

/**
* {@inheritDoc}
*/
public function getActiveCustomers()
{

$this->__initializer__ && $this->__initializer__->__invoke($this, 'getActiveCustomers', []);

return parent::getActiveCustomers();
}

/**
* {@inheritDoc}
*/
Expand Down

0 comments on commit 05a25e1

Please sign in to comment.