PHP 8.2.31
Preview: InvokedProcess.php Size: 1.20 KB
//opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/illuminate/contracts/Process/InvokedProcess.php

<?php

namespace RectorPrefix202411\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);
}

Directory Contents

Dirs: 0 × Files: 2

Name Size Perms Modified Actions
1.20 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download
1.63 KB lrw-r--r-- 2024-11-08 13:59:10
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).