for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SQLParser\Node;
/**
* This class represents a ELSE (in a CASE WHEN ... THEN ... ELSE ... END construct).
*
* @author David Négrier <[email protected]>
*/
class ElseOperation extends AbstractTwoOperandsOperator
{
* Returns the symbol for this operator.
* @return string
protected function getOperatorSymbol()
return 'ELSE';
}