for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Yiisoft\Db\Tests\Support\Stub;
use Yiisoft\Db\Driver\PDO\PDODriverInterface;
final class PDODriver extends \Yiisoft\Db\Driver\PDO\PDODriver implements PDODriverInterface
{
public function getDriverName(): string
return 'db';
}