%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/vacivi36/code/vendor/rector/rector/src/Contract/PhpParser/
Upload File :
Create Path :
Current File : /home/vacivi36/code/vendor/rector/rector/src/Contract/PhpParser/NodePrinterInterface.php

<?php

declare (strict_types=1);
namespace Rector\Core\Contract\PhpParser;

use PhpParser\Node;
use PhpParser\Node\Stmt;
/**
 * This contract allows to autowire custom printer implementation
 */
interface NodePrinterInterface
{
    /**
     * @param \PhpParser\Node|mixed[]|null $node
     */
    public function print($node) : string;
    /**
     * @param Stmt[] $stmts
     */
    public function prettyPrint(array $stmts) : string;
    /**
     * @param Stmt[] $stmts
     */
    public function prettyPrintFile(array $stmts) : string;
}

Zerion Mini Shell 1.0