1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/tests/PHPUnit/Framework/Mock/TestLogger.php
Marc Neudert 1733ef78ca Extend CliMulti to support using symfony/process (#22513)
* Install symfony/process

* Define feature flag

* Detect support of CliMulti to use Symfony Process

* Use Symfony Process if available

* Handle Matomo upgrades across many versions more gracefully

* Log process method used in CliMulti

* Add proper wrapper around Symfony/Process dependency

* Update plugins/VisitorGenerator submodule
2024-09-02 17:30:45 +02:00

12 خطوط
254 B
PHP

<?php
namespace Piwik\Tests\Framework\Mock;
use Piwik\Log\LoggerInterface;
use Psr\Log\Test\TestLogger as PsrTestLogger;
class TestLogger extends PsrTestLogger implements LoggerInterface
{
// provide PSR TestLogger as Piwik\LoggerInterface type
}