for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
/*
* This file is part of the humbug/php-scoper package.
*
* Copyright (c) 2017 Théo FIDRY <[email protected]>,
* Pádraic Brady <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Humbug\PhpScoper\PhpParser\Printer;
use PhpParser\PrettyPrinterAbstract;
final class StandardPrinter implements Printer
{
private PrettyPrinterAbstract $decoratedPrinter;
public function __construct(
PrettyPrinterAbstract $decoratedPrinter
) {
$this->decoratedPrinter = $decoratedPrinter;
}
public function print(array $newStmts, array $oldStmts, array $oldTokens): string
return $this->decoratedPrinter->prettyPrintFile($newStmts)."\n";