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\Scoper;
use Humbug\PhpScoper\Scoper\Symfony\XmlScoper as SymfonyXmlScoper;
use Humbug\PhpScoper\Scoper\Symfony\YamlScoper as SymfonyYamlScoper;
use Humbug\PhpScoper\Symbol\EnrichedReflector;
use Humbug\PhpScoper\Symbol\SymbolsRegistry;
use PhpParser\Error as PhpParserError;
use function func_get_args;
/**
* Scopes the Symfony configuration related files.
final class SymfonyScoper implements Scoper
{
private SymfonyXmlScoper $decoratedScoper;
public function __construct(
Scoper $decoratedScoper,
string $prefix,
EnrichedReflector $enrichedReflector,
SymbolsRegistry $symbolsRegistry
) {
$this->decoratedScoper = new SymfonyXmlScoper(
new SymfonyYamlScoper(
$decoratedScoper,
$prefix,
$enrichedReflector,
$symbolsRegistry,
),
);
}
* Scopes PHP files.
* @throws PhpParserError
public function scope(string $filePath, string $contents): string
return $this->decoratedScoper->scope(...func_get_args());