, * Pádraic Brady * * 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; use Humbug\PhpScoper\Whitelist; final class NullScoper implements Scoper { /** * @inheritdoc */ public function scope(string $filePath, string $contents, string $prefix, array $patchers, Whitelist $whitelist): string { return $contents; } }