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:
Diffstat (limited to 'plugins/SEO/config/ui-test.php')
-rw-r--r--plugins/SEO/config/ui-test.php18
1 files changed, 7 insertions, 11 deletions
diff --git a/plugins/SEO/config/ui-test.php b/plugins/SEO/config/ui-test.php
index ebccc69319..5f4152ede9 100644
--- a/plugins/SEO/config/ui-test.php
+++ b/plugins/SEO/config/ui-test.php
@@ -1,24 +1,20 @@
<?php
-
-return array(
+return [
'observers.global' => \DI\add([
['Http.sendHttpRequest',\DI\value(function ($aUrl, $httpEventParams, &$response, &$status, &$headers) {
// fake responses for SEO metric requests
- if (strpos($aUrl, 'www.alexa.com') ) {
- $response = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/SEO/tests/resources/alexa_response.html');
- } elseif (strpos($aUrl, 'www.bing.com') ) {
+ if (strpos($aUrl, 'www.bing.com')) {
$response = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/SEO/tests/resources/bing_response.html');
- } elseif (strpos($aUrl, 'archive.org') ) {
+ } elseif (strpos($aUrl, 'archive.org')) {
$response = '{"timestamp": "19900101", "url": "matomo.org", "archived_snapshots": {"closest": {"timestamp": "20180109155124", "available": true, "status": "200", "url": "http://web.archive.org/web/20180109155124/https://matomo.org"}}}';
- } elseif (strpos($aUrl, 'www.who.is') ) {
+ } elseif (strpos($aUrl, 'www.who.is')) {
$response = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/SEO/tests/resources/whois_response.html');
- } elseif (strpos($aUrl, 'www.whois.com') ) {
+ } elseif (strpos($aUrl, 'www.whois.com')) {
$response = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/SEO/tests/resources/whoiscom_response.html');
- } elseif (strpos($aUrl, 'www.google.com') ) {
+ } elseif (strpos($aUrl, 'www.google.com')) {
$response = file_get_contents(PIWIK_INCLUDE_PATH . '/plugins/SEO/tests/resources/google_response.html');
}
})]
]),
-
-);
+];