8000 [Process] Decouple Process::findExecutable() from open_basedir by Luc45 · Pull Request #54151 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[Process] Decouple Process::findExecutable() from open_basedir #54151

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

Closed
wants to merge 2 commits into from
Closed
Changes from 1 commit
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
Prev Previous commit
Patching file
  • Loading branch information
Luc45 committed Mar 4, 2024
commit c630308ac2f3167f16792fea922ba5d921bf1aa3
5 changes: 3 additions & 2 deletions src/Symfony/Component/Process/Tests/ExecutableFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@
*/
class ExecutableFinderTest extends TestCase
{
protected function tearDown(): void {
putenv('PATH=' . ($_SERVER['PATH'] ?? $_SERVER['Path']));
protected function tearDown(): void
{
putenv('PATH='.($_SERVER['PATH'] ?? $_SERVER['Path']));
}

public function testFind()
Expand Down
0