mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
14 lines
162 B
PHP
14 lines
162 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* Null value class.
|
|
*/
|
|
class NullValue
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return 'NULL';
|
|
}
|
|
}
|