1
0
mirror of https://github.com/silverstripe/silverstripe-framework synced 2024-10-22 12:05:37 +00:00

16 lines
349 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\ORM\Tests\MySQLiConnectorTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\Connect\MySQLiConnector as OriginalMySQLiConnector;
use mysqli;
class MySQLiConnector extends OriginalMySQLiConnector implements TestOnly
{
public function getMysqliConnection(): mysqli
{
return $this->dbConn;
}
}