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

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

use Piwik\Tests\Framework\Mock\PiwikPro\Advertising;
use Piwik\Plugins\PiwikPro\tests\Framework\Mock\Promo;

return array(
    'Piwik\PiwikPro\Advertising' => function () {
        return new Advertising();
    },
    'Piwik\Plugins\PiwikPro\Promo' => function () {
        return new Promo();
    }
);