Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork9.7k
[Console] Suppress warning from sapi_windows_vt100_support#26211
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
| if ('\\' ===DIRECTORY_SEPARATOR) { | ||
| static::$defaultColors = @( | ||
| function_exists('sapi_windows_vt100_support') &&sapi_windows_vt100_support($this->outputStream) | ||
| function_exists('sapi_windows_vt100_support') &&@sapi_windows_vt100_support($this->outputStream) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
already muted L452?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others.Learn more.
Didn't notice, I'll fix it.
chalasr commentedFeb 18, 2018
Thanks for fixing this bug and congratz for your first contribution to Symfony@adawolfa. |
… (adawolfa)This PR was merged into the 2.7 branch.Discussion----------[Console] Suppress warning from sapi_windows_vt100_support| Q | A| ------------- | ---| Branch? | 2.7| Bug fix? | yes| New feature? | no| BC breaks? | no| Deprecations? | no| Tests pass? | yes| Fixed tickets |#26210| License | MITSuppresses warning from `sapi_windows_vt100_support()` for non-STDIO streams, e. g. `php://memory`.Commits-------43f9421 Suppress warning from sapi_windows_vt100_support on stream other than STDIO
Suppresses warning from
sapi_windows_vt100_support()for non-STDIO streams, e. g.php://memory.