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