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