*/ class AuditableAclProvider extends MutableAclProvider { /** * Get an ACL for this provider. * * @param Propel\Runtime\Collection\ObjectCollection $collection * @param \Symfony\Component\Security\Acl\Model\ObjectIdentityInterface $objectIdentity * @param array $loadedSecurityIdentities * @param \Symfony\Component\Security\Acl\Model\AclInterface $parentAcl * @param bool $inherited * * @return \Propel\Bundle\PropelBundle\Security\Acl\Domain\AuditableAcl */ protected function getAcl(ObjectCollection $collection, ObjectIdentityInterface $objectIdentity, array $loadedSecurityIdentities = array(), AclInterface $parentAcl = null, $inherited = true) { return new AuditableAcl($collection, $objectIdentity, $this->permissionGrantingStrategy, $loadedSecurityIdentities, $parentAcl, $inherited, $this->connection); } }