rhymix/common/framework/parsers/dbquery/NullValue.php

14 lines
162 B
PHP

<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* Null value class.
*/
class NullValue
{
public function __toString(): string
{
return 'NULL';
}
}