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

test.php « environment « config - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0dfd6d97703817952345820fc0d477c604a08a13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

return array(

    // Disable logging
    'Psr\Log\LoggerInterface' => DI\object('Psr\Log\NullLogger'),

    // Disable translation cache
    'Piwik\Translation\Loader\LoaderInterface' => DI\object('Piwik\Translation\Loader\JsonFileLoader'),
    // Disable loading core translations
    'Piwik\Translation\Translator' => DI\object()
        ->constructorParameter('directories', array()),

);