1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/tests/PHPUnit/Framework/Mock/Plugin/LogTablesProvider.php
Stefan Giehl 8bfe2c7465 [Coding Style] Enable rules PSR2.Classes.ClassDeclaration.* (#21727)
* Enable rules PSR2.Classes.ClassDeclaration.*

* autoapply cs
2023-12-20 20:02:50 +01:00

30 خطوط
762 B
PHP

<?php
namespace Piwik\Tests\Framework\Mock\Plugin;
use Piwik\Plugins\CoreHome\Tracker\LogTable\Action;
use Piwik\Plugins\CoreHome\Tracker\LogTable\Conversion;
use Piwik\Plugins\CoreHome\Tracker\LogTable\ConversionItem;
use Piwik\Plugins\CoreHome\Tracker\LogTable\LinkVisitAction;
use Piwik\Plugins\CoreHome\Tracker\LogTable\Visit;
class LogTablesProvider extends \Piwik\Plugin\LogTablesProvider
{
public function __construct()
{
}
public function getAllLogTables()
{
return array(
new Visit(),
new Action(),
new LinkVisitAction(),
new ConversionItem(),
new Conversion(),
new CustomUserLogTable(),
new OtherCustomUserLogTable()
);
}
}