interface InvokedProcess (View source)

Methods

int|null
id()

Get the process ID if the process is still running.

$this
signal(int $signal)

Send a signal to the process.

bool
running()

Determine if the process is still running.

string
output()

Get the standard output for the process.

string
errorOutput()

Get the error output for the process.

string
latestOutput()

Get the latest standard output for the process.

string
latestErrorOutput()

Get the latest error output for the process.

ProcessResult
wait(callable $output = null)

Wait for the process to finish.

Details

int|null id()

Get the process ID if the process is still running.

Return Value

int|null

$this signal(int $signal)

Send a signal to the process.

Parameters

int $signal

Return Value

$this

bool running()

Determine if the process is still running.

Return Value

bool

string output()

Get the standard output for the process.

Return Value

string

string errorOutput()

Get the error output for the process.

Return Value

string

string latestOutput()

Get the latest standard output for the process.

Return Value

string

string latestErrorOutput()

Get the latest error output for the process.

Return Value

string

ProcessResult wait(callable $output = null)

Wait for the process to finish.

Parameters

callable $output

Return Value

ProcessResult