diff options
author | Dawid Pakuła | 2019-12-02 04:52:18 -0500 |
---|---|---|
committer | Dawid Pakuła | 2019-12-02 04:52:48 -0500 |
commit | 1842f63f3c27a443c3bcdb37007ade93ac4973e0 (patch) | |
tree | a5e548457f533157cdc477578d3aa0c62e897dfc | |
parent | 2287fc6ef9a7863275b4f2ac8188e80fe47f3687 (diff) | |
download | org.eclipse.pdt-1842f63f3c27a443c3bcdb37007ade93ac4973e0.tar.gz org.eclipse.pdt-1842f63f3c27a443c3bcdb37007ade93ac4973e0.tar.xz org.eclipse.pdt-1842f63f3c27a443c3bcdb37007ade93ac4973e0.zip |
Turn off experimental flag
Change-Id: Id9fe1fad836666741395be6f8d494b70982ac7f2
Signed-off-by: Dawid Pakuła <zulus@w3des.net>
-rw-r--r-- | plugins/org.eclipse.php.core/src/org/eclipse/php/core/PHPVersion.java | 17 | ||||
-rw-r--r-- | plugins/org.eclipse.php.help/docs/source/016-concepts/008-php_support.md | 2 |
2 files changed, 5 insertions, 14 deletions
diff --git a/plugins/org.eclipse.php.core/src/org/eclipse/php/core/PHPVersion.java b/plugins/org.eclipse.php.core/src/org/eclipse/php/core/PHPVersion.java index bd9473f37..6cc0434bf 100644 --- a/plugins/org.eclipse.php.core/src/org/eclipse/php/core/PHPVersion.java +++ b/plugins/org.eclipse.php.core/src/org/eclipse/php/core/PHPVersion.java @@ -23,18 +23,6 @@ import java.util.Map; public enum PHPVersion { PHP5("php5"), //$NON-NLS-1$ - - /** - * This 5.3 is a major version - it should be 5.0, actually. - * <p> - * New in this version: - * <ul> - * <li><a href="http://www.php.net/language.namespaces">Namespaces</a> - * <li><a href="http://wiki.php.net/rfc/closures">Closures</a> - * <li><a href="http://www.php.net/oop5.late-static-bindings">Late Static - * Binding</a> - * </ul> - */ PHP5_3("php5.3"), //$NON-NLS-1$ PHP5_4("php5.4"), //$NON-NLS-1$ PHP5_5("php5.5"), //$NON-NLS-1$ @@ -43,7 +31,10 @@ public enum PHPVersion { PHP7_1("php7.1"), //$NON-NLS-1$ PHP7_2("php7.2"), //$NON-NLS-1$ PHP7_3("php7.3"), //$NON-NLS-1$ - PHP7_4("php7.4", true); //$NON-NLS-1$ + /** + * @since 7.0 + */ + PHP7_4("php7.4"); //$NON-NLS-1$ private String alias; private boolean isExperimentalSupport; diff --git a/plugins/org.eclipse.php.help/docs/source/016-concepts/008-php_support.md b/plugins/org.eclipse.php.help/docs/source/016-concepts/008-php_support.md index fb310ad7f..fdac7bf73 100644 --- a/plugins/org.eclipse.php.help/docs/source/016-concepts/008-php_support.md +++ b/plugins/org.eclipse.php.help/docs/source/016-concepts/008-php_support.md @@ -2,7 +2,7 @@ <!--context:php_support--> -PDT supports PHP versions 5.1/5.2/5.3/5.4/5.5/5.6/7.0/7.1/7.2/7.3 +PDT supports PHP versions 5.1/5.2/5.3/5.4/5.5/5.6/7.0/7.1/7.2/7.3/7.4 PHP version settings affect: |