mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-14 19:03:51 +09:00
Updates to vendors etc
This commit is contained in:
@@ -20,13 +20,10 @@ use Symfony\Component\Process\Process;
|
||||
*/
|
||||
final class ProcessSignaledException extends RuntimeException
|
||||
{
|
||||
private Process $process;
|
||||
|
||||
public function __construct(Process $process)
|
||||
{
|
||||
$this->process = $process;
|
||||
|
||||
parent::__construct(sprintf('The process has been signaled with signal "%s".', $process->getTermSignal()));
|
||||
public function __construct(
|
||||
private Process $process,
|
||||
) {
|
||||
parent::__construct(\sprintf('The process has been signaled with signal "%s".', $process->getTermSignal()));
|
||||
}
|
||||
|
||||
public function getProcess(): Process
|
||||
|
||||
Reference in New Issue
Block a user