mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
14 lines
164 B
PHP
14 lines
164 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* Empty string class.
|
|
*/
|
|
class EmptyString
|
|
{
|
|
public function __toString(): string
|
|
{
|
|
return "''";
|
|
}
|
|
}
|