Completed
Push — master ( 1145d2...d45d21 )
by Freek
02:06
created

Passthrough::manipulateProcess()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
c 0
b 0
f 0
rs 10
cc 1
eloc 2
nc 1
nop 2
1
<?php
2
3
namespace Spatie\ServerMonitor\Manipulators;
4
5
use Spatie\ServerMonitor\Models\Check;
6
use Symfony\Component\Process\Process;
7
8
class Passthrough implements Manipulator
9
{
10
    public function manipulateProcess(Process $process, Check $check): Process
11
    {
12
        return $process;
13
    }
14
}