File size: 356 Bytes
fcd00ef
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

use Piwik\Plugins\DeviceDetectorCache\CachedEntry;

return [
    'DeviceDetectorCacheIgnoreUserAgentsWithLessThanXRequests' => 0,
    \Piwik\DeviceDetector\DeviceDetectorFactory::class => Piwik\DI::decorate(function ($previous) {
        CachedEntry::setCacheDir(PIWIK_DOCUMENT_ROOT . '/tmp/devicecachetests/');

        return $previous;
    })
];