src/Query/Interfaces/ClauseInterface.php
<?php
/**
* Phossa Project
*
* PHP version 5.4
*
* @category Library
* @package Phossa2\Query
* @copyright Copyright (c) 2016 phossa.com
* @license http://mit-license.org/ MIT License
* @link http://www.phossa.com/
*/
/*# declare(strict_types=1); */
namespace Phossa2\Query\Interfaces;
/**
* ClauseInterface
*
* Marker for clause related interfaces
*
* @package Phossa2\Query
* @author Hong Zhang <phossa@126.com>
* @version 2.0.0
* @since 2.0.0 added
*/
interface ClauseInterface
{
/**
* Dummy placeholders
*
* @var string
*/
const NO_VALUE = '__NO_SUCH_VALUE__';
const NO_OPERATOR = '__NO_SUCH_OPERATOR__';
}