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\Configuration\Configuration;
use Humbug\PhpScoper\PhpParser\TraverserFactory;
use Humbug\PhpScoper\Reflector;
use Humbug\PhpScoper\Scoper\Composer\AutoloadPrefixer;
use Humbug\PhpScoper\Scoper\Composer\InstalledPackagesScoper;
use Humbug\PhpScoper\Scoper\Composer\JsonFileScoper;
use PhpParser\Parser;
/**
* @final
class ScoperFactory
{
private Parser $parser;
public function __construct(Parser $parser)
$this->parser = $parser;
}
public function createScoper(Configuration $configuration): Scoper
$prefix = $configuration->getPrefix();
$whitelist = $configuration->getWhitelist();
$autoloadPrefix = new AutoloadPrefixer($prefix, $whitelist);
return new PatchScoper(
new PhpScoper(
$this->parser,
new JsonFileScoper(
new InstalledPackagesScoper(
new SymfonyScoper(
new NullScoper(),
$prefix,
$whitelist,
),
$autoloadPrefix
new TraverserFactory(
Reflector::createWithPhpStormStubs()->withSymbols(
$configuration->getInternalClasses(),
$configuration->getInternalFunctions(),
$configuration->getInternalConstants(),
$configuration->getPatcher(),
);