Skip to content
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

[CLEANUP] Remove URL reference from DocBlock #1059

Merged
merged 1 commit into from
May 6, 2021
Merged
Changes from all commits
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
6 changes: 3 additions & 3 deletions tests/Support/Constraint/CssConstraint.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ abstract class CssConstraint extends Constraint
/x';

/**
* This is for matching a URL in a string that has already been converted from CSS into a regular expression pattern
* to match it, thus needs to match special characters in their escaped form, and whitespace as `\s*+` (where
* optional) or `\s++`.
* This is for matching a string that has already been converted from CSS into a regular expression pattern to match
* it, thus needs to match special characters in their escaped form, and whitespace as `\s*+` (where optional) or
* `\s++`.
* It matches the end of the string, and optionally preceding whitespace or a semicolon surrounded by optional
* whitespace, provided that what precedes is not a semicolon or whitespace.
*
Expand Down