mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Reintroduce Webklex IMAP for ticket processing as PHP-IMAP is no longer being developed. This is optional for now and considered beta can be found in cron/ticket_email_parser.php
This commit is contained in:
64
plugins/vendor/illuminate/contracts/Process/InvokedProcess.php
vendored
Normal file
64
plugins/vendor/illuminate/contracts/Process/InvokedProcess.php
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
<?php
|
||||
|
||||
namespace Illuminate\Contracts\Process;
|
||||
|
||||
interface InvokedProcess
|
||||
{
|
||||
/**
|
||||
* Get the process ID if the process is still running.
|
||||
*
|
||||
* @return int|null
|
||||
*/
|
||||
public function id();
|
||||
|
||||
/**
|
||||
* Send a signal to the process.
|
||||
*
|
||||
* @param int $signal
|
||||
* @return $this
|
||||
*/
|
||||
public function signal(int $signal);
|
||||
|
||||
/**
|
||||
* Determine if the process is still running.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function running();
|
||||
|
||||
/**
|
||||
* Get the standard output for the process.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function output();
|
||||
|
||||
/**
|
||||
* Get the error output for the process.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function errorOutput();
|
||||
|
||||
/**
|
||||
* Get the latest standard output for the process.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function latestOutput();
|
||||
|
||||
/**
|
||||
* Get the latest error output for the process.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function latestErrorOutput();
|
||||
|
||||
/**
|
||||
* Wait for the process to finish.
|
||||
*
|
||||
* @param callable|null $output
|
||||
* @return \Illuminate\Process\ProcessResult
|
||||
*/
|
||||
public function wait(?callable $output = null);
|
||||
}
|
||||
Reference in New Issue
Block a user