for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Ez\DbLinker\Driver;
use Doctrine\DBAL\Driver\AbstractPostgreSQLDriver;
class PostgresqlRetryDriver extends AbstractPostgreSQLDriver
{
use RetryDriver;
/**
* Gets the name of the driver.
*
* @return string The name of the driver.
*/
public function getName() {
return 'postgresql-retry';
}