Files
yii2/tests/framework/db/AnyValue.php
2017-08-21 01:58:49 +03:00

26 lines
471 B
PHP

<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yiiunit\framework\db;
class AnyValue extends CompareValue
{
/**
* @var self
*/
private static $_instance;
public static function getInstance()
{
if (self::$_instance === null) {
self::$_instance = new self();
}
return self::$_instance;
}
}