for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Patsura Dmitry https://github.com/ovr <[email protected]>
*/
namespace PHPSA\ControlFlow\Node\Expr\BinaryOp;
use PHPSA\ControlFlow\Node\AbstractNode;
abstract class AbstractBinaryOp extends AbstractNode
{
public $left;
public $right;
public $result;
* @return array
public function getSubVariables()
return [
'left' => $this->left,
'right' => $this->right,
'result' => $this->result
];
}