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

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

return array(

    'Piwik\Cache\Backend' => DI\object('Piwik\Cache\Backend\ArrayCache'),

    'Piwik\Translation\Loader\LoaderInterface' => DI\object('Piwik\Translation\Loader\LoaderCache')
        ->constructor(DI\link('Piwik\Translation\Loader\DevelopmentLoader')),
    'Piwik\Translation\Loader\DevelopmentLoader' => DI\object()
        ->constructor(DI\link('Piwik\Translation\Loader\JsonFileLoader')),

);