for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Phive Queue package.
*
* (c) Eugene Leonovich <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Phive\Queue\Tests\Queue\Pdo;
use Phive\Queue\Tests\Handler\PdoHandler;
/**
* @requires extension pdo_mysql
class MysqlPdoQueueTest extends PdoQueueTest
{
public static function createHandler(array $config)
return new PdoHandler([
'dsn' => $config['PHIVE_PDO_MYSQL_DSN'],
'username' => $config['PHIVE_PDO_MYSQL_USERNAME'],
'password' => $config['PHIVE_PDO_MYSQL_PASSWORD'],
'table_name' => $config['PHIVE_PDO_MYSQL_TABLE_NAME'],
]);
}