mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 23:04:54 +08:00
25 lines
482 B
PHP
25 lines
482 B
PHP
<?php
|
|
/**
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yiiunit\framework\web\session\mysql;
|
|
|
|
/**
|
|
* Class DbSessionTest.
|
|
*
|
|
* @author Dmytro Naumenko <d.naumenko.a@gmail.com>
|
|
*
|
|
* @group db
|
|
* @group mysql
|
|
*/
|
|
class DbSessionTest extends \yiiunit\framework\web\session\AbstractDbSessionTest
|
|
{
|
|
protected function getDriverNames()
|
|
{
|
|
return ['mysql'];
|
|
}
|
|
}
|