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: ab095a7aa520bcec974ea68c18f3df13394f9dd3 (plain)
1
2
3
4
5
6
7
8
9
10
<?php

return array(

    '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')),

);