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