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

14 lines
164 B
PHP

<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* Empty string class.
*/
class EmptyString
{
public function __toString(): string
{
return "''";
}
}