for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PPP\DataModel;
/**
* A union operator node.
*
* @licence AGPLv3+
* @author Thomas Pellissier Tanon
*/
class UnionNode extends OperatorNode {
* @return string
public function getType() {
return 'union';
}