tracking/Tests/Functional/Fixtures/UpdateDataCommandTest/PageviewsWithMissingOperatingSystem.php

29 lines
741 B
PHP
Raw Permalink Normal View History

<?php
declare(strict_types=1);
return [
'pages' => [
[
'pid' => '0',
'uid' => '1',
],
],
'tx_tracking_pageview' => [
[
'pid' => '1',
'uid' => '1',
'url' => 'https://example.com/path',
'user_agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.116 Safari/537.36',
'operating_system' => '',
],
[
'pid' => '1',
'uid' => '2',
'url' => 'https://example.com/path',
'user_agent' => 'Dalvik/2.1.0 (Linux; U; Android 9; ONEPLUS A3003 Build/PKQ1.181203.001)',
'operating_system' => '',
],
],
];