for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PHPSA\Compiler\Statement;
use PHPSA\Context;
class FinallySt extends AbstractCompiler
{
protected $name = '\PhpParser\Node\Stmt\Finally_';
/**
* @param \PhpParser\Node\Stmt\Finally_ $statement
* @param Context $context
*/
public function compile($statement, Context $context)
foreach ($statement->stmts as $stmt) {
\PHPSA\nodeVisitorFactory($stmt, $context);
}