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;
use PHPSA\ControlFlow\Block;
class Jump extends AbstractNode
{
* @var Block
protected $exit;
public function __construct(Block $exit)
$this->exit = $exit;
}
public function getSubBlocks()
return [
'exit' => $this->exit
];