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\AbstractMySQLDriver;
class MysqlRetryDriver extends AbstractMySQLDriver
{
use RetryDriver;
/**
* Gets the name of the driver.
*
* @return string The name of the driver.
*/
public function getName() {
return 'mysql-retry';
}