12345678910111213141516171819202122 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestFramework\Db;
- /**
- * Test framework custom connection adapter
- */
- class ConnectionAdapter extends \Magento\Framework\Model\ResourceModel\Type\Db\Pdo\Mysql
- {
- /**
- * Retrieve DB connection class name
- *
- * @return string
- */
- protected function getDbConnectionClassName()
- {
- return \Magento\TestFramework\Db\Adapter\Mysql::class;
- }
- }
|