for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Humbug\PhpScoper\Patcher;
final class NullPatcher implements Patcher
{
public function __invoke(string $filePath, string $prefix, string $contents): string
return $contents;
}