overwrite phpunit junit logging with noop

This commit is contained in:
Adrian Nürnberger
2023-08-20 18:03:59 +02:00
parent 8efd25ef65
commit 4550a344d3
2 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,16 @@
<?php
declare(strict_types=1);
namespace PHPUnit\Logging\JUnit;
use PHPUnit\Event\Facade;
use PHPUnit\TextUI\Output\Printer;
final class JunitXmlLogger
{
public function __construct(Printer $printer, Facade $facade)
{
/** @see \Pest\Logging\JUnit\JUnitLogger */
}
}