for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SQLParser\Node;
use Doctrine\DBAL\Connection;
use Mouf\Database\MagicQueryException;
/**
* This class represents an In operation in an SQL expression.
*
* @author David Négrier <[email protected]>
*/
class In extends AbstractInListOperator
{
* Returns the symbol for this operator.
* @return string
protected function getOperatorSymbol()
return 'IN';
}