Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15381390
D9657.id23647.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
2 KB
Referenced Files
None
Subscribers
None
D9657.id23647.diff
View Options
diff --git a/src/lint/linter/ArcanistXHPASTLinter.php b/src/lint/linter/ArcanistXHPASTLinter.php
--- a/src/lint/linter/ArcanistXHPASTLinter.php
+++ b/src/lint/linter/ArcanistXHPASTLinter.php
@@ -33,10 +33,8 @@
const LINT_BINARY_EXPRESSION_SPACING = 27;
const LINT_ARRAY_INDEX_SPACING = 28;
const LINT_IMPLICIT_FALLTHROUGH = 30;
- const LINT_PHP_53_FEATURES = 31; // Deprecated
const LINT_REUSED_AS_ITERATOR = 32;
const LINT_COMMENT_SPACING = 34;
- const LINT_PHP_54_FEATURES = 35; // Deprecated
const LINT_SLOWNESS = 36;
const LINT_CLOSING_CALL_PAREN = 37;
const LINT_CLOSING_DECL_PAREN = 38;
@@ -95,8 +93,6 @@
self::LINT_BINARY_EXPRESSION_SPACING => 'Space Around Binary Operator',
self::LINT_ARRAY_INDEX_SPACING => 'Spacing Before Array Index',
self::LINT_IMPLICIT_FALLTHROUGH => 'Implicit Fallthrough',
- self::LINT_PHP_53_FEATURES => 'Use Of PHP 5.3 Features',
- self::LINT_PHP_54_FEATURES => 'Use Of PHP 5.4 Features',
self::LINT_REUSED_AS_ITERATOR => 'Variable Reused As Iterator',
self::LINT_COMMENT_SPACING => 'Comment Spaces',
self::LINT_SLOWNESS => 'Slow Construct',
@@ -146,11 +142,6 @@
self::LINT_ELSEIF_USAGE => $advice,
self::LINT_SEMICOLON_SPACING => $advice,
self::LINT_CONCATENATION_OPERATOR => $warning,
-
- // This is disabled by default because projects don't necessarily target
- // a specific minimum version.
- self::LINT_PHP_53_FEATURES => $disabled,
- self::LINT_PHP_54_FEATURES => $disabled,
);
}
@@ -366,28 +357,6 @@
}
private function lintPHPCompatibility(XHPASTNode $root) {
- $php53 = self::LINT_PHP_53_FEATURES;
- $php54 = self::LINT_PHP_54_FEATURES;
- $disabled = ArcanistLintSeverity::SEVERITY_DISABLED;
- if ($this->getLintMessageSeverity($php53) !== $disabled) {
- phutil_deprecated(
- '`LINT_PHP_53_FEATURES` is deprecated.',
- "You should set 'xhpast.php-version' instead.");
-
- if (!$this->version) {
- $this->version = '5.2.3';
- }
- }
- if ($this->getLintMessageSeverity($php54) !== $disabled) {
- phutil_deprecated(
- '`LINT_PHP_54_FEATURES` is deprecated.',
- "You should set 'xhpast.php-version' instead.");
-
- if (!$this->version) {
- $this->version = '5.3.0';
- }
- }
-
if (!$this->version) {
return;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 15, 7:23 AM (1 w, 1 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7223882
Default Alt Text
D9657.id23647.diff (2 KB)
Attached To
Mode
D9657: Remove deprecated lints from `ArcanistXHPASTLinter`
Attached
Detach File
Event Timeline
Log In to Comment