-
-
Notifications
You must be signed in to change notification settings - Fork 7
Add pcntl and grpc docs #95
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
Merged
Merged
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
ec9da1c
Requirements: document PCNTL as a recommended PHP extension
rodrigoprimo e3e23ce
Requirements: add warning about gRPC extension and parallel processing
rodrigoprimo a4120b0
Add details on how to handle the gRPC extension directly in the text …
rodrigoprimo bc0b73c
Add details on how to handle the gRPC extension directly in the text …
rodrigoprimo bdd42b4
Spellcheck: also ignore code blocks inside blockquotes
rodrigoprimo cda898f
Fix code block regex to also handle indented code blocks
rodrigoprimo 28669ef
Move individual sniff requirements above gRPC warning
rodrigoprimo 623c34c
cspell: fix regex doc indentation
jrfnl File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Hmm... looking at this again now, I think it would be better for the docs to include the information for which you now point to an issue.
What do you think ?
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.
How do I configure these settings "properly"? I think the documentation should include that part as well.
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.
I think it looks good now.
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.
I think that is a good idea, @jrfnl! I've updated the warning to include the workaround directly in the text instead of pointing to the issue.
I used
```textinstead of```bashfor the code block as the latter highlights<file|directory>which is not helpful in my opinion for this particular case.The phpcs command added here triggered a cspell error. I opted to update the cspell
markdown_code_blockregex pattern to also ignore code blocks inside blockquotes. The previous pattern only matched code blocks starting with optional whitespace, so it didn't match the> ```syntax used in this warning. Let me know if you prefer a different approach, such as applying this fix in a separate PR or simply adding the word that triggers the error to the allowlist.