Files
yii2/tests/framework/db/AnyValue.php
2023-10-23 11:26:59 -03:00

23 lines
479 B
PHP

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