Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas GAILLARD <ngaillard.vosges@gmail.com>2015-06-17 16:15:28 +0300
committerNicolas GAILLARD <ngaillard.vosges@gmail.com>2015-06-17 16:15:28 +0300
commit43c9e5d87c932b4b02eac44013bec97f7239671e (patch)
tree7e46ef9185ec0e6ac7648013e95de81dbf0ccb2e /plugins/Diagnostics/Diagnostic
parentc6c58c2a27940075b81fa37e069915e59ed356f2 (diff)
Fix the verification of the Reflection extension during an installation with HHVM.
Diffstat (limited to 'plugins/Diagnostics/Diagnostic')
-rw-r--r--plugins/Diagnostics/Diagnostic/PhpExtensionsCheck.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/plugins/Diagnostics/Diagnostic/PhpExtensionsCheck.php b/plugins/Diagnostics/Diagnostic/PhpExtensionsCheck.php
index 3464c88e9a..17833f07d0 100644
--- a/plugins/Diagnostics/Diagnostic/PhpExtensionsCheck.php
+++ b/plugins/Diagnostics/Diagnostic/PhpExtensionsCheck.php
@@ -57,13 +57,9 @@ class PhpExtensionsCheck implements Diagnostic
'iconv',
'json',
'mbstring',
+ 'Reflection',
);
- if (! defined('HHVM_VERSION')) {
- // HHVM provides the required subset of Reflection but lists Reflections as missing
- $requiredExtensions[] = 'Reflection';
- }
-
return $requiredExtensions;
}