dev.php
13 lines
| 1 | <?php |
| 2 | |
| 3 | return array( |
| 4 | |
| 5 | 'Piwik\Cache\Backend' => DI\object('Piwik\Cache\Backend\ArrayCache'), |
| 6 | |
| 7 | 'Piwik\Translation\Loader\LoaderInterface' => DI\object('Piwik\Translation\Loader\LoaderCache') |
| 8 | ->constructor(DI\get('Piwik\Translation\Loader\DevelopmentLoader')), |
| 9 | 'Piwik\Translation\Loader\DevelopmentLoader' => DI\object() |
| 10 | ->constructor(DI\get('Piwik\Translation\Loader\JsonFileLoader')), |
| 11 | |
| 12 | ); |
| 13 |