You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A tool that reverts an abstract syntax tree (AST) produced by the
php-ast extension back into (somewhat)
PSR-compliant code. This enables for code preprocessing to be done.
Requirements:
PHP 7.*
php-ast extension (compatible with
versions 30, 35, 40, 45, and 50)
Installation
Composer
composer require tpunt/php-ast-reverter
Example
Running the following code snippet:
<?php$code = <<<'end'
<?php/** * My testing class */class ClassName extends AnotherClass implements AnInterface{ /** * Some property */ private $prop = 0; const TEST = 'string'; use TraitA, TraitB { TraitA::func1 insteadof TraitB; TraitB::func1 as protected func2; } /** * Some useless constructor */ function __construct(int $arg = 1) { $this->prop = $arg; }}
end;
$ast = ast\parse_code($code, $version=40);
echo (newAstReverter\AstReverter)->getCode($ast);
Will output:
<?php/** * My testing class */class ClassName extends AnotherClass implements AnInterface
{
/** * Some property */private$prop = 0;
constTEST = "string";
use TraitA, TraitB {
TraitA::func1 insteadof TraitB;
TraitB::func1 asprotected func2;
}
/** * Some useless constructor */publicfunction__construct(int$arg = 1)
{
$this->prop = $arg;
}
}
About
Reverts the php-ast AST back into (somewhat) PSR-compliant code