We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
php-openapi
I have a PHPUnit test case containing following line:
exec('echo Hiii...', $output, $code);
when I run the test case in CLI, "Hiii..." is not printed in CLI. This is expected.
In the same way if my script (PHPUnit test) has
exec('bin/php-openapi validate tests/data/issue/165/spec.yml', $output, $code);
the output of $ bin/php-openapi should not be printed in CLI but in reality it is printed
$ bin/php-openapi
The text was updated successfully, but these errors were encountered:
This issue was observed while fixing #165
Sorry, something went wrong.
This is a behaviour of exec(). See "User Contributed Notes" section on that page
exec()
Successfully merging a pull request may close this issue.
I have a PHPUnit test case containing following line:
when I run the test case in CLI, "Hiii..." is not printed in CLI. This is expected.
In the same way if my script (PHPUnit test) has
the output of
$ bin/php-openapi
should not be printed in CLI but in reality it is printedThe text was updated successfully, but these errors were encountered: