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