Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Override Symfony Process. #175

Closed
wants to merge 18 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 37 additions & 0 deletions src/Console/Process.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?php namespace Winter\Storm\Console;

use Symfony\Component\Process\Process as BaseProcess;
use Symfony\Component\Process\Exception\RuntimeException;

/**
* Process class
*
* Fixes this symfony issue:
* https://github.com/symfony/symfony/issues/54874
*
* Not needed if the following PR gets merged:
* https://github.com/symfony/symfony/pull/54863
*
* @author Marc Jauvin
*/
class Process extends BaseProcess
{
/**
* Enables or disables TTY mode.
*
* @throws RuntimeException In case the TTY mode is not supported or /dev/tty is not accessible.
*/
public function setTty(bool $tty): static
{
if ($tty && '/' === \DIRECTORY_SEPARATOR) {
try {
// trigger exception if open_basedir restrictions prevent /dev/tty access
$status = stat('/dev/tty');
} catch (\Throwable $e) {
throw new RuntimeException($e->getMessage());
}
}

return parent::setTty($tty);
}
}