ExistValidatorPostgresTest.php 257 Bytes
Newer Older
1 2 3 4 5
<?php
namespace yiiunit\framework\validators\ExistValidatorDriverTests;

use yiiunit\framework\validators\ExistValidatorTest;

6 7 8
/**
 * @group validators
 */
9 10
class ExistValidatorPostgresTest extends ExistValidatorTest
{
11
    protected $driverName = 'pgsql';
AlexGx committed
12
}