for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\ServerMonitor\Manipulators;
use Spatie\ServerMonitor\Models\Check;
use Symfony\Component\Process\Process;
class Passthrough implements Manipulator
{
public function manipulateProcess(Process $process, Check $check): Process
return $process;
}