Programming Language PHP
Namespace Oro\Component\DoctrineUtils\DBAL
Class DbPrivilegesProvider
Total Examples 1
1 code examples of PHP Oro\Component\DoctrineUtils\DBAL\DbPrivilegesProvider extracted from open source projects
/**
* @inheritDoc
*/
protected function getGrantedPrivileges(Connection $connection): array
{
return DbPrivilegesProvider::getMySqlGrantedPrivileges(
$connection->getWrappedConnection(),
$connection->getDatabase()
);
}