![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/rector/rector/vendor/illuminate/contracts/Process/ |
<?php namespace RectorPrefix202308\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\Console\Process\ProcessResult */ public function wait(callable $output = null); }