-
Notifications
You must be signed in to change notification settings - Fork 144
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
[TASK] Deprecate ::atRuleArgs()
#1191
base: v8.x
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,6 +103,8 @@ public function atRuleName() | |
|
||
/** | ||
* @return string | ||
* | ||
* @deprecated since V8.8.0, will be removed in version 9.0.0. Use the specific getter instead. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't have a getter for the |
||
*/ | ||
public function atRuleArgs() | ||
{ | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,6 +45,8 @@ public function atRuleName() | |
|
||
/** | ||
* @return string | ||
* | ||
* @deprecated since V8.8.0, will be removed in version 9.0.0. Use the specific getter instead. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This doesn't have a specific getter for the |
||
*/ | ||
public function atRuleArgs() | ||
{ | ||
|
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.
This class doesn't have a specific getter for
$arguments
, so one will need to be added first.