mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-15 06:40:59 +08:00
13 lines
256 B
PHP
13 lines
256 B
PHP
<?php
|
|
namespace yiiunit\framework\validators\ExistValidatorDriverTests;
|
|
|
|
use yiiunit\framework\validators\ExistValidatorTest;
|
|
|
|
/**
|
|
* @group validators
|
|
*/
|
|
class ExistValidatorSQliteTest extends ExistValidatorTest
|
|
{
|
|
protected $driverName = 'sqlite';
|
|
}
|