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;
abstract class AbstractNode
{
* Will this node exit?
*
* @return bool
public function willExit()
return false;
}
* @return array
public function getSubVariables()
return [];
* @return \PHPSA\ControlFlow\Block[]
public function getSubBlocks()