قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +00:00

* 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
12 خطوط
254 B
PHP
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
|
|
}
|