diff options
Diffstat (limited to 'vendor/symfony/process/Tests/ProcessInSigchildEnvironment.php')
-rw-r--r-- | vendor/symfony/process/Tests/ProcessInSigchildEnvironment.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/vendor/symfony/process/Tests/ProcessInSigchildEnvironment.php b/vendor/symfony/process/Tests/ProcessInSigchildEnvironment.php new file mode 100644 index 00000000..3977bcdc --- /dev/null +++ b/vendor/symfony/process/Tests/ProcessInSigchildEnvironment.php @@ -0,0 +1,22 @@ +<?php + +/* + * This file is part of the Symfony package. + * + * (c) Fabien Potencier <fabien@symfony.com> + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Process\Tests; + +use Symfony\Component\Process\Process; + +class ProcessInSigchildEnvironment extends Process +{ + protected function isSigchildEnabled() + { + return true; + } +} |