process; } /** * @return mixed */ public function getRedirectStdinAndStdout(): mixed { return $this->redirect_stdin_and_stdout; } /** * @return int */ public function getPipeType(): int { return $this->pipe_type; } /** * @return bool */ public function isEnableCoroutine(): bool { return $this->enable_coroutine; } /** * @return string */ public function getName(): string { return $this->name; } /** * @param \Swoole\Process $process */ public function start(\Swoole\Process $process) { $this->process = $process; } }